-
实验一
任务一 #include <stdio.h> int main() { printf(" O \n"); printf("<H>\n"); printf("I I\n"); printf(" O \n"); printf("<H>\n"); printf("I I\n"); return 0; } -
实验1
task 1 #include <stdio.h> int main() { printf(" 0 \n"); printf("<H>\n"); printf("I I\n"); printf(" 0 \n"); printf("<H>\n"); printf("I I\n"); return 0; -
20254216 实验一 《Python程序设计》实验报告
课程:《Python程序设计》 班级:2542班 姓名:李柳烨 学号:20254216 实验教师:王志强 实验日期:2026年3月23日 必修/选秀:公选课 (一)实验内容 1.熟悉Python开发环境: 介绍Python开发环境的各项功能。 2.练习Python运行、调试技能: 编写书中的程序,并 -
20252816 2025-2026-2 《网络攻防实践》第三次作业
20252816 2025-2026-2 《网络攻防实践》第三次作业 1.实验要求 (1)动手实践tcpdump 使用tcpdump开源软件对在本机上访问www.163.com网站过程进行嗅探,回答问题:你在访问www.163.com网站首页时,浏览器将访问多少个Web服务器?他们的IP地址都是什么 -
实验2
实验任务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)); // 以当 -
实验二
任务1 源代码: 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<time.h> 4 5 #define N 5 6 int main() 7 { 8 int number; 9 int i; 10 11 srand(time(0)); 12 -
实验二
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)); 12 for( -
实验2
任务1 源代码1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int number; int i; srand(time(0)); // 以当前系统时间作为随机种子 for(i = -
实验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( -
实验二
task1 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)); // 以 -
实验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
任务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)) -
实验_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; -
20252806 2025-2026-2 《网络攻防实践》第2次作业
20252806 《网络攻防实践》第2次作业 文章目录 目录文章目录1.实验内容2.实验过程(1)从www.besti.edu.cn、baidu.com、sina.com.cn中选择一个DNS域名进行查询,获取如下信息:(2)尝试获取BBS、论坛、QQ、MSN中某一好友的IP地址,并查询获取该好友所 -
20232415 2025-2026-3 《Python程序设计》实验1报告
课程:《Python程序设计》班级: 2324姓名: 孙鸿淼学号:20232415实验教师:王志强实验日期:2026年3月23日必修/选修: 公选课 1.实验内容 1.熟悉Python开发环境;介绍Python开发环境的各项功能。2.练习Python运行、调试技能;编写书中的程序,并进行调试分析,要 -
20252904 2025-2026-2 《网络攻防实践》第3周作业
20252904 2025-2026-2 《网络攻防实践》第3周作业 1.实验相关内容 1.网络嗅探与数据包捕获基础 网络嗅探是指通过抓包工具获取网络中传输的数据帧、数据包,并对其进行分析的过程。常用工具包括 tcpdump 和 Wireshark。前者以命令行为主,适合快速抓包和过滤;后者提供 -
实验2 C语言分支与循环基础应用编程
实验任务1 1.源代码 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main1() { int number; int i; srand(time(0)); // 以当前系统时间作为随机种子 for -
实验2
实验1: 源代码: #include <stdio.h>#include <stdlib.h>#include <time.h>#define N 5int main(){int number;int i;srand(time(0));for(i=0;i<N;++i){ number= rand() -
实验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 fo -
实验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