-
实验4
#include<stdio.h> #define N 4 #define M 2 void test1(){ int x[N] = {1,9,8,4}; int i; printf("sizeof(x)=%d\n",sizeof(x)); for(i=0;i<N;++i) printf("%p:% -
实验3 类和对象_基础编程2
实验任务1: 代码: 1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 using std::string; 7 using std::cout; 8 9 // 按钮类 10 class Button { 11 public -
实验3 类和对象_基础编程2
任务一: 源代码: button.hpp 1 #pragma once 2 3 #include<iostream> 4 #include<string> 5 6 using std::string; 7 using std::cout; 8 9 //按钮类 10 class Button { 11 -
高级语言程序设计第六次作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C/ 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 学号:102400117 姓名:廖逸轩 在oj经常做到质数, -
实验4
源代码1: 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1(){ 6 int x[N]={1,9,8,4}; 7 int i; 8 9 printf("sizeof(x)=%d\n",sizeof(x)); 10 11 -
实验四
实验1 #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) = %d\n", sizeof(x)); -
实验4 c语言数组应用编程
task1: 1 #include<stdio.h> 2 #include<stdlib.h> 3 #define N 4 4 #define M 2 5 6 7 void test1(){ 8 int x[N]={1,9,8,4}; 9 int i; 10 11 printf("sizeof(x) -
高级语言程序设计课程第六次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/2024C/home 学号:032201109 姓名:朱添驰 1. 总结:非常不错的作业。 -
实验四
任务一: 代码: `#include <stdio.h> define N 4 define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) = %d\n", sizeof(x -
2024-2025-1(20241321)《计算机基础与程序设计》第七周学习总结
这个作业属于哪个课程 <班级的链接>(2024-2025-1-计算机基础与程序设计) 这个作业要求在哪里 <作业要求的链接>(2024-2025-1计算机基础与程序设计第一周作业) 这个作业的目标 <深刻学习C语言,反思一周学习,温故知新> 作业正文 ... 本博客链接https://www.cnb -
实验4 C语言数组应用编程
1. 实验任务1 #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) = %d\n", sizeof( -
实验4
task1.c 源代码 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 printf("sizeof(x) = %d\n", siz -
高级程序语言设计第6次个人作业
作业课程 作业要求 学号:102400116 姓名:黄博文 1 2 3 4 5 6 7 8 9 10 11 12 对于数组和指针的运用还不够熟悉 通过这次题目对于该类题型更加熟悉了 -
高级语言程序设计课程第六次个人作业
**高级语言程序设计课程第六次个人作业** 这个作业属于哪个课程: https://edu.cnblogs.com/campus/fzu/2024C 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 学号:10240 -
# 20222316 2024-2025-1 《网络与系统攻防技术》实验四实验报告
一、实验内容 1.学习总结 1)恶意代码基本概念 定义 使计算机按照攻击者的意图运行以达到恶意目的的指令集合。 指令集合: 二进制执行文件, 脚本语言代码, 宏代码, 寄生在文件、启动扇区等的指令流 恶意代码目的: 技术炫耀/恶作剧, 远程控制, 窃取私密信息,盗用资源, 拒绝服务/破坏,等等 类型 -
高级语言程序设计课程第六次个人作业
这个作业属于哪个课程 2024高级语言程序设计 (福州大学 - 计算机与大数据学院) 这个作业要求在哪里 高级语言程序设计课程第六次个人作业 学号 052205124 姓名 林宇 作业内容: 问题:如何判断素数 解决:使用isPrime函数辅助或者使用素数筛等优化算法 2. 问题:如何复制字符串 解 -
高级语言程序设计课程第六次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 姓名:郑宇凌 学号:102400135 第一题 无问题 第二题 -
实验4
实验任务1 #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; printf("sizeof(x) = %d\n", sizeof(x)); for (i = 0; i < -
高级语言程序设计第6次作业
高级语言程序设计课程第六次个人作业 这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 学号:102300303 姓 -
cpp实验3
任务1: #pragma once #include<iostream> #include<string> using std::string; using std::cout; class Button{ public: Button(const string &text); string get