-
高级语言程序设计第六次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C/ 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 姓名:陶玉兰 学号:102400107 这一题试了很多遍,重 -
高级语言程序设计课程第六次个人作业(102400106刘鑫语)
作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C/ 作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 学号:102400106 姓名:刘鑫语 (1)编写函数fun(int -
实验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)); -
高级语言程序设计课程第六次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 学号:<102400230> 姓名:<叶全祺> -
高级语言程序设计第六次作业
作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C/ 作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 学号:102300107 姓名:陈沁怡 (1)编写函数fun(int -
实验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("sizeof(x) -
实验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("sizeof(x) -
2024数据采集与融合技术实践-作业3
作业①: 1)指定一个网站,爬取这个网站中的所有的所有图片,例如:中国气象网(http://www.weather.com.cn)。使用scrapy框架分别实现单线程和多线程的方式爬取。 1.核心代码描述 items.py import scrapy class WeatherItem(scrapy -
高级语言程序设计课程第六次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C/ 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 姓名:柯镇海 学号:102400218 1: 2: 3: 4 -
OOP实验三
任务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
任务1: window.cpp 1 #pragma once 2 #include"button.hpp" 3 #include<vector> 4 //vector 5 #include<iostream> 6 7 using std::vector; 8 using std::cout; 9 u -
实验3
任务一 #pragma once #include <iostream> #include <string> using std::string; using std::cout; // °´Å¥Àà class Button { public: Button(const string &text) -
实验四
实验四 实验一: 源代码: 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", sizeo -
实验3 类和对象_基础编程2
task1: 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 { 1 -
实验3 类和对象_基础编程2
实验任务1: task1.cpp: #include "window.hpp" #include <iostream> using std::cout; using std::cin; void test() { Window w1("new window"); w1.add_button("max -
20222415 2024-2025-1《网络与系统攻防技术》实验四实验报告
1.实验内容 1.1恶意代码文件类型标识、脱壳与字符串提取 1.2使用IDA Pro静态或动态分析crackme1.exe与crakeme2.exe,寻找特定输入,使其能够输出成功信息。 1.3分析一个自制恶意代码样本rada 1.4取证分析实践 2.实验过程 2.1恶意代码文件类型标识、脱壳与字符 -
学期2024-2025-1 学号20241317 《计算机基础与程序设计》第七周学习总结
学期2024-2025- 学号20241317 《计算机基础与程序设计》第七周学习总结 作业信息 这个作业属于哪个课程 <班级的链接>(如2024-2025-1-计算机基础与程序设计) 这个作业要求在哪里 <作业要求的链接>(如2024-2025-1计算机基础与程序设计第一周作业) 这个作业的目标 -
实验3
task1 button.hpp #pragma once #include <iostream> #include <string> using std::string; using std::cout; // 按钮类 class Button { public: Button(const str -
实验3 类和对象
实验任务1: button.hpp #pragma once #include <iostream> #include <string> using std::string; using std::cout; // 按钮类 class Button { public: Button(const st -
实验3
实验任务1: 1 #pragma once 2 #include <iostream> 3 #include <string> 4 using std::string; 5 using std::cout; 6 7 // 按钮类 8 class Button { 9 public: 10 Butto