• 首页
  • 校区
  • 班级
  • 博文
  • 评论
  • 作业
总阅读排行 | 周阅读排行 | 零回复 | 有回复 | 作业博文 | 其他博文 | 所有博文
零回复 | 有回复 | 作业 | 其他 | 所有
  • 20254110 2025-2026-2 《Python程序设计》实验2报告

    20254110 2025-2026-2 《Python程序设计》实验2报告 课程:《Python程序设计》 班级: 2541 姓名: 杨永恒 学号:20254110 实验教师:王志强 实验日期:2020年4月7日 必修/选修: 专选课 1.实验内容 (1)编写计算器程序 ①设计并完成一个完整的应用
     2026年行政管理(北京电子科技学院)   2YH   2026-04-09 20:30    0    6
  • 20254126 王溪泽 实验二《Python程序设计》实验报告

    学号 2025-2026-2 《Python程序设计》实验x报告 课程:《Python程序设计》 班级: 2541 姓名: 王溪泽 学号:20254126 实验教师:王志强 实验日期:2026年4月7日 必修/选修: 专选课 1.实验内容 (1)编写计算器程序 设计并完成一个完整的应用程序,完成加减
     2026年行政管理(北京电子科技学院)   20254126王溪泽   2026-04-07 22:39    0    6
  • 20254206 实验二 《Python程序设计》 实验报告

    2025-2026-2 《Python程序设计》实验报告 课程:《Python程序设计》 班级:2542 姓名:李宇翰 学号:20254206 实验教师:王志强 实验日期:2026年4月7日 必修/选修:公选课 (一)实验内容 1.编写计算器程序 (1)打开PyCharm,设计并完成一个完整的计算机
     2026年行政管理(北京电子科技学院)   lyh。   2026-04-08 22:52    0    6
  • 20253908 2024-2025-2 《网络攻防实践》实践4报告

    1. 实践内容(Reformulated and Expanded) 1.1 ARP 缓存投毒攻击(链路层) 核心机理(Principle) 地址解析协议(ARP)用于在局域网中完成 IP 地址到 MAC 地址的动态映射。然而,该协议缺乏身份认证与完整性校验机制,使其易受到伪造报文的攻击。攻击者通过
     2026年DKY网络攻防实践(北京电子科技学院)   2148377568   2026-04-11 13:50    0    6
  • 实验2

    1.一:生成五个202400420001~202400420100范围内的随机数并输出 二:生成一个一到一百之间的随机数 三:使数字输出时以四位数输出,当数字不足四位时,在数字前补零凑足四位 四:以当前系统时间作为随机数种子,让rand()生成的伪随机数每次运行程序都不同;若去掉这行,多次运行程序会
     计算机程序设计(C语言)(南京信息工程大学)   xialkQwQ   2026-04-06 17:44    0    6
  • 20251912 2024-2025-2 《网络攻防实践》实践四报告

    1.实践内容 ARP缓存欺骗攻击 攻击者通过发送伪造的ARP响应包,告诉目标主机“网关的MAC地址是攻击机的MAC地址”,从而使目标主机把本该发往网关的流量误发给攻击机。攻击机可以开启IP转发,把收到的流量再转给真实网关,从而在目标不知情的情况下实现中间人监听或流量劫持。 ICMP重定向攻击 ICM
     2026年DKY网络攻防实践(北京电子科技学院)   眠眠大王   2026-04-08 22:31    0    6
  • 实验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
     计算机程序设计(C语言)(南京信息工程大学)   Miracle_rui   2026-04-06 21:16    0    6
  • 实验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));
     计算机程序设计(C语言)(南京信息工程大学)   Lei_YY   2026-04-06 12:54    0    6
  • 实验2

    task1 源代码 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)); 9 for(i
     计算机程序设计(C语言)(南京信息工程大学)   yq8   2026-04-06 21:33    0    6
  • 实验2

    task1 源代码 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<time.h> 4 5 6 #define N 5 7 int main(){ 8 int number; 9 int i; 10 11 srand(time(0)); 12
     计算机程序设计(C语言)(南京信息工程大学)   文xuan   2026-04-07 20:02    0    5
  • 实验2

    任务一 源代码 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)); 9 for(i =
     计算机程序设计(C语言)(南京信息工程大学)   不敢睡觉   2026-04-06 15:37    0    5
  • 实验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)); 1
     计算机程序设计(C语言)(南京信息工程大学)   oππ   2026-04-07 21:15    0    5
  • 实验二

    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)); // 以
     计算机程序设计(C语言)(南京信息工程大学)   槊   2026-04-07 18:24    0    5
  • 实验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)); // 以当
     计算机程序设计(C语言)(南京信息工程大学)   葛益豪   2026-04-06 21:47    0    5
  • 实验二

    实验内容 任务一 源代码 #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) { numb
     计算机程序设计(C语言)(南京信息工程大学)   草莓铣礼   2026-04-06 14:59    0    5
  • 实验二

    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(
     计算机程序设计(C语言)(南京信息工程大学)   辛虹霖   2026-04-07 18:12    0    5
  • 实验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))
     计算机程序设计(C语言)(南京信息工程大学)   X++++++++++++   2026-04-07 21:59    0    5
  • 20252920卢兴宇 2025-2026-2 《网络攻防实践》第四周作业

    实验四 TCP/IP 网络协议攻击实验报告 一、实验目的 在网络攻防实验环境中完成TCP/IP协议栈重点协议的攻击实验,包括ARP缓存欺骗攻击、ICMP重定向攻击、SYN Flood攻击、TCP RST攻击、TCP会话劫持攻击;熟悉网络攻防实验环境的配置方法及常用工具的基本使用方法;通过实验观察典型
     2026年DKY网络攻防实践(北京电子科技学院)   20252920卢兴宇   2026-04-09 10:11    0    5
  • 第三次作业 网络嗅探与协议分析

    第三次作业 网络嗅探与协议分析 一、实验内容 1. 主要任务 本次实验围绕网络嗅探与扫描取证展开,核心包含三个任务,具体要求如下: 网络访问嗅探分析:在Kali Linux虚拟机中运用tcpdump工具,抓取访问https://www.163.com过程中产生的全部网络数据包;对数据包进行解析,提取
     2026年DKY网络攻防实践(北京电子科技学院)   20251917李鑫明   2026-04-09 11:24    0    5
  • 20254226 实验二《Python程序设计》实验报告

    目录20254226 2025-2026-2 《Python程序设计》实验二报告1.实验内容2. 实验过程及结果(1)编写计算器程序(2)用LLM生成一个计算器程序• 介绍相关功能,并分析生成的程序代码含义。• 对比分析自写程序与生成程序的区别(好与坏)3. 实验过程中遇到的问题和解决过程其他(感悟
     2026年行政管理(北京电子科技学院)   20254226黄婉婷   2026-04-08 21:42    0    5
< Prev1···345678910111213Next >

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