-
实验2 C语言分支与循环基础应用编程
实验任务1: 源代码: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #define N 5 5 int main() { 6 int number; 7 int i; 8 srand(time(0)); 9 for -
20254220梁晋源《Python程序设计》实验二报告
课程:《Python 程序设计》 班级: 2542 姓名: 梁晋源 学号:20254220 实验教师:王志强 实验日期:2026年 4 月 7日 必修: 公选课 实验内容 本次实验核心任务是使用 Python 语言编写一个多功能高级计算器程序,实现基础算术运算与数学函数运算功能。 具体要求: 支持加 -
实验2
任务一 源代码 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 5 #define N 5 6 7 int main(){ 8 int number; 9 int i; 10 11 srand(time(0)); 12 -
[T.2] 团队项目:选题和需求分析
这个作业属于哪个课程 北航2026年春季软件工程 这个作业的要求在哪里 [T.2] 团队项目:选题和需求分析 我在这个课程的目标是 明确团队作业选题,初步明确开发方向 这个作业在哪个具体方面帮助我实现目标 确认选题,进行选题调研 一、选题介绍:PaperPal 针对当前本科生和低年级研究生阅读英文论 -
实验二
任务1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int number; int i; srand(time(0)); for(i = 0; i < N; ++i) { numb -
第二次作业---agent的初步构建
这个作业属于哪个课程 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24 这个作业要求在哪里 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24/homework/1564 -
20251909 2024-2025-2 《网络攻防实践》实验三
1.实验内容 基础知识 tcp三次握手流程 TCP三次握手是客户端与服务器建立可靠TCP连接的过程,核心目的是确认双方的发送、接收数据能力都正常,同时同步双方的初始序列号,为后续可靠传输做准备,具体流程如下: 第一次握手 客户端主动向服务器发起连接请求,发送一个SYN标志位为1的TCP报文段。客户端 -
实验2
1.实验任务1 task1.c 源代码 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<time.h> 4 #define N 5 5 int main() 6 { 7 int number; 8 int i; 9 srand(time(0)) -
实验2
实验任务1 源代码 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<time.h> 4 5 #define N 5 6 7 int main(){ 8 int number; 9 int i; 10 11 srand(time(0)); 12 -
实验2
1.一:生成五个202400420001~202400420100范围内的随机数并输出 二:生成一个一到一百之间的随机数 三:使数字输出时以四位数输出,当数字不足四位时,在数字前补零凑足四位 四:以当前系统时间作为随机数种子,让rand()生成的伪随机数每次运行程序都不同;若去掉这行,多次运行程序会 -
实验2
任务1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int number; int i; srand(time(0));// 以当前系统时间作为随机种子 for(i = 0; i -
实验2
task1 源代码 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #define N 5 5 int main() { 6 int number; 7 int i; 8 srand(time(0)); 9 for(i -
实验二
任务1: 问题1:功能是随机挑选该专业的5名学员的学号。 问题2:line13代码的功能是生成1-100的随机整数,存到number变量里。 问题3:line14使用%04d是用来保证能够输出编号始终是4位,数值不足4位时左侧补0 问题4:srand(time())的作用是每次运行生成不同的随机组数 -
20252815 2025-2026-2《网络攻防实践》第4周作业
一、实践内容 在网络攻防实验环境中完成TCP/IP协议 栈重点协议的攻击实验,包括ARP缓存欺骗攻击、ICMP重定向攻击、SYN Flood攻击、TCP RST攻击、TCP会话劫持攻击。 1、网络层协议攻击 常见的包括:IP源地址欺骗、ARP欺骗和ICMP路由重定向 攻击。 (1)IP源地址欺骗(I -
第二次作业
软件工程 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24/ 这个作业要求在哪里 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24/homework/15646 这个作 -
第二次作业
这个作业属于哪个课程 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24 这个作业要求在哪里 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24/homework/1564 -
实验2
实验2 实验任务1 源代码 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<time.h> 4 5 #define N 5 6 7 int main(){ 8 int number; 9 int i; 10 11 srand(time(0)); -
实验2
实验任务一 源代码task1.c 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #define N 5 5 6 int main() 7 { 8 int number; 9 int i; 10 srand(time( -
实验2
任务1 源代码 #include<stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int number; int i; srand(time(0)); for(i = 0; i < N; ++i) { n -
第二次作业
这个作业属于哪个课程 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24 这个作业要求在哪里 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24/homework/1564