-
博客主页地址
https://www.cnblogs.com/Yh-c-learning -
20252819 2025-2026-2《网络攻防实践》第四周作业
20252804 2025-2026-2《网络攻防实践》实践四报告 一、实验目的 掌握ARP缓存欺骗攻击的原理与实现方法,理解ARP协议无认证的安全缺陷。 掌握ICMP重定向攻击的实现,理解路由欺骗与流量劫持机制。 掌握SYN Flood拒绝服务攻击,理解TCP半连接耗尽资源的原理。 掌握TCP R -
第二次作业
这个作业属于哪个课程 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24 这个作业要求在哪里 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineering24/homework/1564 -
实验二
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)); // 以当前系统时间作为随机种子 -
实验2
实验任务1 task.1.c源代码 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(t -
实验2
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)); -
实验2 C语言分支与循环基础应用编程
实验任务1 1.源代码 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main1() { int number; int i; srand(time(0)); // 以当前系统时间作为随机种子 for -
实验2
实验1: 源代码: #include <stdio.h>#include <stdlib.h>#include <time.h>#define N 5int main(){int number;int i;srand(time(0));for(i=0;i<N;++i){ number= rand() -
实验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 fo -
实验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 -
实验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)); -
实验2
任务1 源代码 #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) { n -
实验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 -
实验2
一、实验结论 1.实验任务1 代码task1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int number; int i; srand(time(0)); for (i = 0 -
实验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)); // 以当 -
实验2
实验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)); -
实验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 = -
实验2
实验任务一 源代码task1.c 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #define N 5 5 6 int main() 7 { 8 int number; 9 int i; 10 srand(time( -
实验二
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)); // 以 -
实验2
任务1 源代码1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int number; int i; srand(time(0)); // 以当前系统时间作为随机种子 for(i =