-
实验二
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
task1源代码 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 -
第二次作业-2
这个作业属于哪个课程 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24 这个作业要求在哪里 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24/homework/1564 -
实验2
实验内容 任务1 源代码 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int number; int i; srand(time(0)); // 以当前系统时间作为随机种子 for -
第二次作业
这个作业属于哪个课程 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24/ 这个作业要求在哪里 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24/homework/156 -
实验2 C语言分支与循环基础应用编程
四 任务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)); 1 -
20251906 2025-2026-2 《网络攻防实践》第三周作业
1.实验内容 本次实验中,先利用tcpdump对本机访问网页的流量进行嗅探,通过抓包分析,统计出访问网页时连接的Web服务器数量并识别对应IP;随后使用Wireshark对TELNET登录BBS的过程进行数据包分析,获取了服务器IP与端口,了解到该协议明文传输账号密码的特点,并掌握了筛选、提取登录信 -
20254109 2025-2026-2 《Python程序设计》实验2报告
课程:《Python程序设计》 班级: 2541 姓名: 张家宝 学号: 20254109 实验教师:王志强 实验日期:2025年4月7日 必修/选修: 公选课 (一)实验内容 1.编写计算器程序 设计并完成一个完整的应用程序,完成加减乘除模等运算,功能多多益善。考核基本语法、判定语句、循环语句、逻 -
# 20254121 2025-2026-2 《Python程序设计》实验二报告
课程:《Python程序设计》 班级: 2541 姓名: 何若水 学号:20254121 实验教师:王志强 实验日期:2025年4月7日 必修/选修: 专选课 ## 1.实验内容 ①编写计算器程序 - 设计并完成一个完整的应用程序,完成加减乘除模等运算,功能多多益善。 - 考核基本语法、判定语句、循 -
20254118 于欣灵 2025-2026-2 《Python程序设计》实验二报告
课程:《Python程序设计》 班级: 2541 姓名: 于欣灵 学号:254118 实验教师:王志强 实验日期:2026年4月7日 必修/选修: 必修课 1.实验内容 (1)编写计算器程序 设计并完成一个完整的应用程序,完成加减乘除模等运算,功能多多益善。 考核基本语法、判定语句、循环语句、逻辑运 -
实验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) { number -
实验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 源代码 #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) -
实验2
任务1 源代码 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 5 #define N 5 6 7 int main() 8 { 9 int number; 10 int i; 11 12 srand(time(0)) -
实验二
实验内容 任务一 源代码 #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 -
实验二 C语言分支与循环基础应用编程
1.实验任务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 -
实验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
实验2 实验结论 任务1 源代码: 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<time.h> 4 5 #define N 5 6 7 int main() 8 { 9 10 int number; 11 int i; 12 13 sran -
实验2
实验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));// 以当前系统