• 首页
  • 校区
  • 班级
  • 博文
  • 评论
  • 作业
总阅读排行 | 周阅读排行 | 零回复 | 有回复 | 作业博文 | 其他博文 | 所有博文
零回复 | 有回复 | 作业 | 其他 | 所有
  • 实验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
     计算机程序设计(C语言)(南京信息工程大学)   Lei_YY   2026-04-20 19:15    0    8
  • 实验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
     计算机程序设计(C语言)(南京信息工程大学)   luvfz   2026-04-18 14:57    0    8
  • 实验三

    task1 代码: #include <stdio.h> char score_to_grade(int score); // 函数声明 int main() { int score; char grade; while(scanf("%d", &score) != EOF) { grade = s
     计算机程序设计(C语言)(南京信息工程大学)   刘君瑞   2026-04-19 23:52    0    8
  • 实验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) !=
     计算机程序设计(C语言)(南京信息工程大学)   Bob欧巴   2026-04-17 23:05    0    8
  • 实验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)
     计算机程序设计(C语言)(南京信息工程大学)   qingfeng的好朋友   2026-04-18 18:36    0    8
  • 实验报告3

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

    任务一 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
     计算机程序设计(C语言)(南京信息工程大学)   asteria11   2026-04-22 01:49    0    8
  • 实验三

    任务一 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
     计算机程序设计(C语言)(南京信息工程大学)   Ahmmsdy   2026-04-16 20:10    0    8
  • 实验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
     计算机程序设计(C语言)(南京信息工程大学)   刺客伍六柒(上学ing)   2026-04-21 23:41    0    8
  • 20254305 《Python程序设计》实验二报告

    20254305 2025-2026-2 《Python程序设计》实验二报告 课程:《Python程序设计》 班级: 2543 姓名: 孙博 学号:20254305 实验教师:王志强 实验日期:2026年4月14日 必修/选修: 公选课 1.实验内容 (1)编写计算器程序 • 设计并完成一个完整的应
     2026年公选课-Python程序设计(北京电子科技学院 - 网络空间安全系)   20254305孙博   2026-04-14 16:28    1    8
  • 20252906 2025-2026-2 《网络攻防实践》第6周作业

    1.实验内容 (1)动手实践Metasploit windows attacker 任务:使用metasploit软件进行windows远程渗透统计实验 具体任务内容:使用windows Attacker/BT4攻击机尝试对windows Metasploitable靶机上的MS08-067漏洞进行
     2026年DKY网络攻防实践(北京电子科技学院)   淡墨如野   2026-04-26 12:04    0    7
  • 20252817 2025-2026-2 《网络攻防实践》实践七报告

    学号 20252817 2025-2026-2 《网络攻防实践》实践七报告 1. 实践内容 本次实践主要围绕 Linux 远程渗透攻击和攻防对抗分析展开。和前一次 Windows 远程渗透实验相比,这次的目标换成了 Linux 靶机,重点是利用 Metasploit 对 Metasploitable
     2026年DKY网络攻防实践(北京电子科技学院)   ch_c   2026-05-06 20:13    0    7
  • 20252808 2025-2026-2 《网络攻防实践》第六次作业

    20252808 2025-2026-2 《网络攻防实践》第六次作业 一. 实验内容 1.1 实验内容概述 动手实践Metasploit windows attacker 使用metasploit软件进行windows远程渗透统计实验:使用windows Attacker/BT4攻击机尝试对wind
     2026年DKY网络攻防实践(北京电子科技学院)   蒋乐乐   2026-04-26 16:05    0    7
  • 实验三 C语言函数应用编程

    实验任务1 #include <stdio.h> char score_to_grade(int score); // 函数声明 int main() { int score; char grade; while(scanf("%d", &score) != EOF) { grade = score
     计算机程序设计(C语言)(南京信息工程大学)   野鑫喵喵   2026-04-22 07:34    0    7
  • 20254101 实验三《Python程序设计》实验报告

    学号 2025-2026-2 《Python程序设计》实验三报告 课程:《Python程序设计》 班级:2541 姓名: 李若涵 学号:20254101 实验教师:王志强 实验日期:2026年4月28日 必修/选修: 专选课 1.实验内容 创建服务端和客户端,服务端在特定端口监听多个客户请求。客户端
     2026年行政管理(北京电子科技学院)   秉烛27   2026-05-11 19:16    0    7
  • 20233225 2025-2026-2 《Python程序设计》实验3报告

    2025-2026-2《Python程序设计》实验三报告 课程:《Python程序设计》 班级:2442 姓名:曹熙卓 学号:20233225 实验教师:王志强 实验日期:2026年4月28日 必修/选修:专选课 1.实验内容 这次实验主要是做Socket网络编程,用Python写了一对TCP聊天的
     2026年行政管理(北京电子科技学院)   doctorcao   2026-04-28 21:47    2    7
  • 实验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
     计算机程序设计(C语言)(南京信息工程大学)   FineLe   2026-05-05 21:47    0    7
  • 实验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
     计算机程序设计(C语言)(南京信息工程大学)   Bob欧巴   2026-05-05 16:01    0    7
  • 实验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
     计算机程序设计(C语言)(南京信息工程大学)   wuhahahaha   2026-05-02 15:36    0    7
  • 实验四

    任务一 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)
     计算机程序设计(C语言)(南京信息工程大学)   Ahmmsdy   2026-05-01 11:51    0    7
< Prev1···5960616263646566676869···200Next >

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