• 首页
  • 校区
  • 班级
  • 博文
  • 评论
  • 作业
总阅读排行 | 周阅读排行 | 零回复 | 有回复 | 作业博文 | 其他博文 | 所有博文
零回复 | 有回复 | 作业 | 其他 | 所有
  • 实验四

    实验任务1 task1.c源代码 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 print
     计算机程序设计(C语言)(南京信息工程大学)   朱梦想   2026-05-05 19:51    0    6
  • 实验4

    实验任务1 源代码 1 #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 =
     计算机程序设计(C语言)(南京信息工程大学)   X++++++++++++   2026-05-04 11:30    0    6
  • 实验四

    实验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 // 输出数组x占用的内
     计算机程序设计(C语言)(南京信息工程大学)   AmanoTook0   2026-05-05 23:34    0    6
  • 20254121 2025-2026-2 《Python程序设计》实验3报告

    课程:《Python程序设计》 班级: 2541 姓名: 何若水 学号:20254121 实验教师:王志强 实验日期:2026年4月28日 必修/选修: 专选课 ## 1.实验内容 : 创建服务端和客户端,服务端在特定端口监听多个客户请求。客户端和服务端通过Socket套接字(TCP/UDP)进行通
     2026年行政管理(北京电子科技学院)   20254121何若水   2026-04-29 20:28    2    6
  • # 20252920 2025-2026-2 《网络攻防实践》实践7报告

    1.实践内容 (1)使用Metasploit进行Linux远程渗透攻击 任务:使用Metasploit渗透测试软件,攻击Linux靶机上的Samba服务Usermap_script安全漏洞,获取目标Linux靶机的主机访问权限。实践步骤如下: ①启动Metasploit软件,可根据个人喜好使用msf
     2026年DKY网络攻防实践(北京电子科技学院)   20252920卢兴宇   2026-05-06 16:34    0    6
  • 20251911 2025-2026-2 《网络攻防实践》实践7报告

    1.实践内容 任务一:使用 Metasploit 框架对 Linux 靶机的 Samba 服务进行远程渗透。通过 usermap_script 漏洞模块,配置合适的远程 Shell 载荷,设置目标与监听参数,完成漏洞利用,最终获取靶机的主机访问权限并验证权限级别。 任务二:进行攻防对抗模拟。攻击方在
     2026年DKY网络攻防实践(北京电子科技学院)   yuzzz11111   2026-05-06 16:30    0    6
  • 实验四

    task1: 问题一:连续存放。x 和 &x [0] 值相同; 问题二:按行连续存放。 x、x [0]、&x [0][0] 地址值相同。 x[1] -与x[0] 相差 16 字节(4 个 int),表示一行元素占用的字节数。 task2: 问题一:形参:intx,[x]; 实参:直接写数组x。 问题
     计算机程序设计(C语言)(南京信息工程大学)   李耀斌   2026-05-05 22:19    0    6
  • 实验四

    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 <
     计算机程序设计(C语言)(南京信息工程大学)   王明智   2026-05-05 21:18    0    6
  • 实验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
     计算机程序设计(C语言)(南京信息工程大学)   刺客伍六柒(上学ing)   2026-05-05 21:53    0    6
  • task4

    1 #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 < N;
     计算机程序设计(C语言)(南京信息工程大学)   白云司   2026-05-05 19:29    0    6
  • 实验4

    实验任务1 #include <stdlib.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)
     计算机程序设计(C语言)(南京信息工程大学)   kobebrant24   2026-05-05 20:16    0    6
  • 实验四

    任务一 源代码 复制代码 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占用
     计算机程序设计(C语言)(南京信息工程大学)   种野菜   2026-05-05 20:10    0    6
  • 实验4

    1.实验任务1 源代码 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() 6 { 7 int x[N] = {1, 9, 8, 4}; 8 int i; 9 printf("sizeof(x) = %d\n", siz
     计算机程序设计(C语言)(南京信息工程大学)   202283300498石欣源   2026-05-05 21:04    0    6
  • 实验4

    #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)); // 输
     计算机程序设计(C语言)(南京信息工程大学)   李想1111111   2026-05-05 19:10    0    6
  • 实验四报告

    实验一 源代码: 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
     计算机程序设计(C语言)(南京信息工程大学)   zhangqingyang347   2026-05-04 20:13    0    6
  • 实验四

    任务一: #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));
     计算机程序设计(C语言)(南京信息工程大学)   孙群峰   2026-05-05 16:37    0    6
  • 20254204刘俐《Python程序设计》实验三报告

    20254204 2025-2026-2 《Python程序设计》实验三报告 课程:《Python程序设计》 班级: 2542 姓名: 刘俐 学号:20254204 实验教师:王志强 实验日期:2026年4月28日 必修/选修: 专选课 1.实验内容 创建服务端和客户端,服务端在特定端口监听多个客户
     2026年行政管理(北京电子科技学院)   刘俐   2026-05-09 22:27    0    6
  • 实验三

    四、实验结论 实验任务1 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) !=
     计算机程序设计(C语言)(南京信息工程大学)   a怡宝a   2026-04-22 05:04    0    6
  • 实验3

    #include <stdio.h> char score_to_grade(int score); // 函数声明 int main() { int score; char grade; while(scanf("%d", &score) != EOF) { grade = score_to_gr
     计算机程序设计(C语言)(南京信息工程大学)   1ucAs   2026-04-22 09:52    0    6
  • 实验三

    #include <stdio.h> char score_to_grade(int score); // 函数声明 int main() { int score; char grade; while(scanf("%d", &score) != EOF) { grade = score_to_gr
     计算机程序设计(C语言)(南京信息工程大学)   王忠正   2026-04-22 09:46    0    6
< Prev1···7172737475767778798081···200Next >

Copyright ©2026 Cnblogs, Inc. Powered by .NET Core on Kubernetes. 问题反馈   帮助文档