-
实验2
1.一:生成五个202400420001~202400420100范围内的随机数并输出 二:生成一个一到一百之间的随机数 三:使数字输出时以四位数输出,当数字不足四位时,在数字前补零凑足四位 四:以当前系统时间作为随机数种子,让rand()生成的伪随机数每次运行程序都不同;若去掉这行,多次运行程序会 -
实验二
任务一 问题一:生成五个202400420001~202400420100范围内的随机数并输出 问题二:生成一个一到一百之间的随机数 问题三:使数字输出时以四位数输出,当数字不足四位时,在数字前补零凑足四位 问题四:以当前系统时间作为随机数种子,让rand()生成的伪随机数每次运行程序都不同;若去掉 -
实验二
实验1 代码 点击查看代码 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int number; int i; srand(time(0)); // 以当前系统时间作为随机种子 fo -
实验2
任务一 源代码: 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));// 以当前系统时 -
实验2
任务一 源代码 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 = -
实验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
实验内容 任务1 源代码 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int number; int i; srand(time(0)); // 以当前系统时间作为随机种子 for -
实验二
实验内容 任务一 源代码 #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 -
实验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)); -
第二次软工作业
这个作业属于哪个课程 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24 这个作业要求在哪里 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24/homework/1564 -
第二次软工作业
这个作业属于哪个课程 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24 这个作业要求在哪里 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24/homework/1564 -
第二次作业
这个作业属于哪个课程 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24/ 这个作业要求在哪里 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24/homework/156 -
20251903 2025-2026-2 《网络攻防实践》实验三
一、本次实验应达到的目标 实验(1):tcpdump 嗅探 Web 访问过程:使用 tcpdump 指令嗅探虚拟机访问 www.baidu.com首页的流量,掌握 tcpdump 抓包与过滤规则,精准统计访问的 Web 服务器数量及对应 IP 地址,理解 DNS 解析与 Web 资源加载的流量特征。 -
实验2
任务一 源代码 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=0;i<N -
第二次作业
这个作业属于哪个课程 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24 这个作业要求在哪里 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24/homework/1564 -
第二次作业
软件工程 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24/ 这个作业要求在哪里 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24/homework/15646 这个作 -
20252820 2024-2025-2 《网络攻防实践》第4次作业
20252820 2024-2025-2 《网络攻防实践》第4次作业 一、实验内容 1.1 实验内容 本次实验围绕 TCP/IP 协议栈中的典型攻击展开,主要完成以下实验内容: ARP 缓存欺骗攻击 ICMP 重定向攻击 SYN Flood 攻击 TCP RST 攻击 TCP 会话劫持攻击 1.2 -
第二次作业---agent的初步构建
这个作业属于哪个课程 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24 这个作业要求在哪里 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24/homework/1564 -
第二次作业
这个作业属于哪个课程 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));