-
实验3
实验任务1 源代码 1 #include <stdio.h> 2 3 char score_to_grade(int score); 4 5 int main(){ 6 int score; 7 char grade; 8 9 while(scanf("%d", &score) != EOF){ 1 -
实验3
实验任务1: 1 #include<stdio.h> 2 char score_to_grade(int score);//函数声明 3 4 int main() { 5 int score; 6 char grade; 7 8 while (scanf_s("%d", &score) != EOF -
实验三
task1 代码: #include <stdio.h> char score_to_grade(int score); // 函数声明 int main() { int score; char grade; while(scanf("%d", &score) != EOF) { grade = s -
实验3
任务1 源代码: 1 #include <stdio.h> 2 3 char score_to_grade(int score); // 函数声明 4 5 int main() { 6 int score; 7 char grade; 8 9 while(scanf("%d", &score) != -
实验3
task1 #include<stdio.h> char score_to_grade(int score); int main(){ int score; char grade; while(scanf("%d",&score)!=EOF){ grade=score_to_grade(score) -
实验报告3
task1 代码: #include <stdio.h> char score_to_grade(int score); // 函数声明 int main() { int score; char grade; while(scanf("%d", &score) != EOF) { grade = s -
实验三
任务一 1 #include <stdio.h> 2 char score_to_grade(int score); // 函数声明 3 int main() { 4 int score; 5 char grade; 6 while(scanf("%d", &score) != EOF) { 7 g -
实验三
任务一 1 #include <stdio.h> 2 3 char score_to_grade(int score); 4 5 int main() { 6 int score; 7 char grade; 8 9 while(scanf("%d", &score) != EOF) { 10 gr -
实验3
int sum_digits(int n) { int sum = 0; while(n > 0) { sum += n % 10; n /= 10; } return sum; } int main() { int n; scanf("%d", &n); printf("%d\n", sum_di -
20254305 《Python程序设计》实验二报告
20254305 2025-2026-2 《Python程序设计》实验二报告 课程:《Python程序设计》 班级: 2543 姓名: 孙博 学号:20254305 实验教师:王志强 实验日期:2026年4月14日 必修/选修: 公选课 1.实验内容 (1)编写计算器程序 • 设计并完成一个完整的应 -
20252906 2025-2026-2 《网络攻防实践》第6周作业
1.实验内容 (1)动手实践Metasploit windows attacker 任务:使用metasploit软件进行windows远程渗透统计实验 具体任务内容:使用windows Attacker/BT4攻击机尝试对windows Metasploitable靶机上的MS08-067漏洞进行 -
20252817 2025-2026-2 《网络攻防实践》实践七报告
学号 20252817 2025-2026-2 《网络攻防实践》实践七报告 1. 实践内容 本次实践主要围绕 Linux 远程渗透攻击和攻防对抗分析展开。和前一次 Windows 远程渗透实验相比,这次的目标换成了 Linux 靶机,重点是利用 Metasploit 对 Metasploitable -
20252808 2025-2026-2 《网络攻防实践》第六次作业
20252808 2025-2026-2 《网络攻防实践》第六次作业 一. 实验内容 1.1 实验内容概述 动手实践Metasploit windows attacker 使用metasploit软件进行windows远程渗透统计实验:使用windows Attacker/BT4攻击机尝试对wind -
实验三 C语言函数应用编程
实验任务1 #include <stdio.h> char score_to_grade(int score); // 函数声明 int main() { int score; char grade; while(scanf("%d", &score) != EOF) { grade = score -
20254101 实验三《Python程序设计》实验报告
学号 2025-2026-2 《Python程序设计》实验三报告 课程:《Python程序设计》 班级:2541 姓名: 李若涵 学号:20254101 实验教师:王志强 实验日期:2026年4月28日 必修/选修: 专选课 1.实验内容 创建服务端和客户端,服务端在特定端口监听多个客户请求。客户端 -
20233225 2025-2026-2 《Python程序设计》实验3报告
2025-2026-2《Python程序设计》实验三报告 课程:《Python程序设计》 班级:2442 姓名:曹熙卓 学号:20233225 实验教师:王志强 实验日期:2026年4月28日 必修/选修:专选课 1.实验内容 这次实验主要是做Socket网络编程,用Python写了一对TCP聊天的 -
实验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
任务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("sizeo -
实验4
实验任务一 源代码task1.c 1 #include <stdio.h> 2 #include <stdlib.h> 3 #define N 4 4 #define M 2 5 6 void test1() { 7 int x[N] = {1, 9, 8, 4}; 8 int i; 9 10 pr -
实验四
任务一 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)