-
20232223 实验三《Python程序设计》实验报告
学号 2025-2026-2 《Python程序设计》实验三报告 课程:《Python程序设计》 班级: 2322 姓名: 夏韵诗 学号:20232223 实验教师:王志强 实验日期:2026年4月27日 必修/选修: 公选课 1.实验内容 创建服务端和客户端,服务端在特定端口监听多个客户请求。客户 -
20254311实验三《Python程序设计》实验报告
学号 2025-2026-2 《Python程序设计》实验三报告 课程:《Python程序设计》 班级: 2543 姓名: 孙小涵 学号:20254311 实验教师:王志强 实验日期:2026年4月27日 必修/选修: 公选课 1.实验内容 1.1个人编程与队友互相通信 1.创建服务端和客户端,选择 -
实验4
实验任务1 源代码 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 printf("sizeof( -
20254225 2025-2026-2 《Python程序设计》实验三报告
学号 2025-2026-2 《Python程序设计》实验三报告 课程:《Python程序设计》 班级: 2542 姓名: 侯九州 学号:20254225 实验教师:王志强 实验日期:2026年4月28日 必修/选修: 公选课 实验内容 本次实验围绕Python Socket套接字网络通信展开,核心 -
实验4
实验4 task1 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("size -
实验四
task1 源代码 #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", size -
实验四
点击查看代码 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 #include<stdlib.h> 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 -
20253905 2025-2026-2 《网络攻防实践》实践七报告
20253905 2025-2026-2 《网络攻防实践》实践七报告 1.实践内容 利用Metasploit工具调用Samba服务usermap_script漏洞模块,配置相关参数后对Linux靶机实施渗透,获取远程Shell与主机权限 攻防对抗,攻击方借助Metasploit渗透Metasploi -
20252307 实验三 《Python程序设计》 实验报告
学号 2025-2026-2 《Python程序设计》实验三报告 课程:《Python程序设计》 班级: 2523 姓名: 万书林 学号:20252307 实验教师:王志强 实验日期:2026年4月27日 必修/选修: 公选课 1.实验内容 (1)使用 Python 语言基于 TCP Socket -
20253907 2025-2026-2《网络攻防实践》第7周作业
20253907 2025-2026-2《网络攻防实践》第7周作业 1. 实践内容 本次实验主要学习使用Metasploit渗透测试框架对Linux靶机进行远程渗透攻击,并配合防守方进行网络流量分析。实验分为两个部分: (1)Metasploit Linux远程渗透攻击 使用Metasploit框架 -
实验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("sizeof -
实验四
实验任务一 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 -
实验4 C语言数组应用编程
实验1 源代码 #include <stdio.h> #include<stdlib.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; // 输出数组x占用的内存字节数 printf("sizeof(x -
实验4
#define _CRT_SECURE_NO_WARNINGS 1 #include <stdio.h> #include <stdlib.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; printf -
实验四
task1 `#include <stdio.h> define N 4 define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; printf("sizeof(x) = %d\n", sizeof(x)); for (i = 0; i < -
实验四作业
任务一 源代码 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 void test1() { 5 int x[N] = { 1, 9, 8, 4 }; 6 int i; 7 // 输出数组x占用的内存字节数 8 printf("sizeof(x) -
实验四
task1: 问题一:连续存放。x 和 &x [0] 值相同; 问题二:按行连续存放。 x、x [0]、&x [0][0] 地址值相同。 x[1] -与x[0] 相差 16 字节(4 个 int),表示一行元素占用的字节数。 task2: 问题一:形参:intx,[x]; 实参:直接写数组x。 问题 -
4.29作业
实验任务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
试验任务1 代码 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 printf("sizeof -
实验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 printf("sizeof(x) = %d\n", sizeof(