-
高级语言程序设计第六次个人作业
作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C/ 作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 学号:102400101 姓名:程黄姗 1:会漏掉用&来取指针的值 -
2024-2025-1 20241305 《计算机基础与程序设计》第七周学习总结
作业信息 这个作业属于哪个课程 2024-2025-1-计算机基础与程序设计(https://edu.cnblogs.com/campus/besti/2024-2025-1-CFAP) 这个作业要求在哪里 2024-2025-1计算机基础与程序设计第七周作业 这个作业的目标 1、数组与链表2、基于 -
高级语言程序设计课程第六次个人作业
2024高级语言程序设计:https://edu.cnblogs.com/campus/fzu/2024C 高级语言程序设计课程第五次个人作业:https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 学号:102400234 姓名:郑宇澄 1. -
实验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 -
高级语言程序设计第六次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C/ 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 姓名:陶玉兰 学号:102400107 这一题试了很多遍,重 -
实验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 < -
高级语言程序设计第六次作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C/ 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 学号:102400117 姓名:廖逸轩 在oj经常做到质数, -
高级语言程序设计课程第六次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C/ 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 学号:102400205 姓名:柳钰舒 方便观看把源代码和运 -
高级语言程序设计第七次作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C/ 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13304 学号:102400204 姓名:刘嘉奕 1. 2.需要思维贯 -
数据采集作业3
数据采集与融合技术第三次作业 学号姓名 Gitee仓库地址 102202128 林子豪 https://github.com/zihaoyihao/-3 作业①: 要求:指定一个网站,爬取这个网站中的所有的所有图片,例如:中国气象网(http://www.weather.com.cn)。使用scra -
高级语言程序设计课程第七次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C/ 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13304 学号:102300134 姓名:曾威 (1)定义一个二维数组 -
实验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:% -
实验四
任务一 源代码: #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) pr -
高级语言程序设计课程第六次个人作业
**高级语言程序设计课程第六次个人作业** 这个作业属于哪个课程: https://edu.cnblogs.com/campus/fzu/2024C 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 学号:10240 -
实验3
button.hpp #pragma once #include <iostream> #include <string> using std::string; using std::cout; // 按钮类 class Button { public: Button(const string &t -
20222326 2024-2025-1 《网络与系统攻防技术》实验四实验报告
恶意代码分析 -
实验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 // 输出数组x占用的内存字节数 10 printf("size -
实验四
任务一 源代码 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 void test1(){ 5 int x[N]={1,9,8,4}; 6 int i; 7 printf("sizeof(x)=%d\n",sizeof(x)); 8 for(i= -
c++程序设计基础实验三
任务1: 源代码: button.hpp: #pragma once #include <iostream> #include <string> using std::string; using std::cout; // 按钮类 class Button { public: Button(cons -
实验3 类和对象_基础编程2
实验任务1: 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 {