-
实验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 -
实验三 类和对象_基础编程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 { 11 -
《计算机基础与程序设计》第七周学习总结
如2024-2025-7) 20241404 《计算机基础与程序设计》第七周学习总结 作业信息 这个作业属于哪个课程 https://edu.cnblogs.com/campus/besti/2024-2025-1-CFAP 这个作业要求在哪里 https://www.cnblogs.com/roc -
实验4
task1: 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( -
实验3
task1 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: 12 -
实验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 -
实验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 -
实验3 类和对象
实验任务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 { 11 -
实验三
实验任务1 (1)代码部分 1 //button.hpp 2 #pragma once 3 4 #include <iostream> 5 #include <string> 6 7 using std::string; 8 using std::cout; 9 10 // 按钮类 11 class -
数据采集作业3
🎇作业① 🚀(1)作业要求 要求:指定一个网站,爬取这个网站中的所有的所有图片,例如:中国气象网(http://www.weather.com.cn)。使用scrapy框架分别实现单线程和多线程的方式爬取。 务必控制总页数(学号尾数2位)、总下载的图片数量(尾数后3位)等限制爬取的措施。 输出信 -
20222412 2024-2025-1 《网络与系统攻防技术》实验四实验报告
20222412 2024-2025-1 《网络与系统攻防技术》实验四实验报告 1.实验内容 1.1 什么是恶意代码? 恶意代码是指故意编制或设置的、对网络或系统会产生威胁或潜在威胁的计算机代码。这些代码通常具有自我复制的能力,能够通过感染其他程序或文件来传播自身,并在特定条件下执行恶意操作。 1. -
高级语言程序设计第六次个人作业
作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C/ 作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 学号:102400208 姓名:杨雨薇 1. 2. 3. 4. 5. -
实验4_C语言数组应用编程
task1 #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)) -
高级程序语言设计第六次作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C/ 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 班级:软件工程2班 姓名:袁志华 学号:102400231 -
实验四
task1 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 -
数据采集与融合第三次作业
码云仓库地址 https://gitee.com/sun-jiahui22/crawl_project 作业1仓库地址 https://gitee.com/sun-jiahui22/crawl_project/tree/master/作业3/实验3.1 作业2的仓库地址 https://gitee. -
实验4
任务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语言数组应用编程
实验任务1 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 // 输出数组x占用的内存字节数 10 printf(" -
实验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) -
20222410 2024-2025-1 《网络与系统攻防技术》实验五实验报告
1.实验内容 1.1 本周内容总结 Metasploit是一个广泛使用的渗透测试框架,主要用于漏洞利用、攻击模拟和安全评估。它提供了丰富的攻击模块,支持主动攻击、针对浏览器的攻击以及针对客户端的攻击。主动攻击通常涉及对目标系统的直接攻击,利用已知漏洞入侵;浏览器攻击则通过恶意网页或脚本利用浏览器漏洞