2020年12月8日

实验四

摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 安俊豪 年级 2018级 区队 网络安全与执法三区 指导教师 高见 信息技术与网络安全学院 2020年11月30日 实验任务总纲 2020— 阅读全文

posted @ 2020-12-08 19:12 an同学 阅读(33) 评论(0) 推荐(0)

2020年11月16日

实验二

摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 安俊豪 年级 2018 区队 网络安全与执法三区 指导教师 高见 信息网络安全学院 2020年11月7日 实验任务总纲 2019—2020 阅读全文

posted @ 2020-11-16 21:06 an同学 阅读(58) 评论(0) 推荐(0)

实验三

摘要: 学 号 201821430010 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 安俊豪 年级 2018 区队 网络安全与执法三区 指导教师 高见 信息技术与网络安全学院 2020年11月 阅读全文

posted @ 2020-11-16 10:32 an同学 阅读(43) 评论(0) 推荐(0)

2020年10月23日

实验一

摘要: 学 号 201821430010 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 安俊豪 年级 2018 区队 网络安全与执法三区 指导教师 高见 信息技术与网络安全学院 2017年 阅读全文

posted @ 2020-10-23 23:27 an同学 阅读(57) 评论(0) 推荐(0)

2019年6月23日

5.3

摘要: #include<stdio.h>int max2(int a,int b){if(a>=b)return a;else return b;}int max4(int a,int b,int c,int d){int x,y,z;x=max2(a,b);y=max2(c,d);z=max2(x,y) 阅读全文

posted @ 2019-06-23 12:42 an同学 阅读(145) 评论(0) 推荐(0)

2019年6月22日

4.4

摘要: #include<stdio.h>int main(){int y,i; for(i=2;i<=100;i++){ y=2; if(i%y!=0) { y=3; if(i%y!=0) { y=4; if(i%y!=0) { y=5; if(i%y!=0) { y=6; if(i%y!=0) { y= 阅读全文

posted @ 2019-06-22 20:17 an同学 阅读(235) 评论(0) 推荐(0)

4.3

摘要: #include <stdio.h>int main(){ char string[100]; int i,num=0,word=0; char c; gets(string); for(i=0;(c=string[i])!='\0';i++) if(c==' ') word=0; else if( 阅读全文

posted @ 2019-06-22 19:49 an同学 阅读(172) 评论(0) 推荐(0)

2019年6月21日

3.3

摘要: #include<stdio.h>int main(){int a,b,c,d,x;d=0;for(a=1;a<6;a++){for(c=1;c<6;c++){ if(c==b) continue; else x=a*100+c*10; for(b=1;b<=5;b++) { if(c==b||a= 阅读全文

posted @ 2019-06-21 15:54 an同学 阅读(133) 评论(0) 推荐(0)

2019年6月6日

5.2

摘要: #include <stdio.h> int prime(int n) { int a; for (a = 2; a < n; a += 1) { if(n % a ==0) { break; } } if(n==a) { return 1; } else { return 0; } }int ma 阅读全文

posted @ 2019-06-06 15:29 an同学 阅读(216) 评论(0) 推荐(0)

5.1

摘要: #include <stdio.h>#include <math.h>int add(int x,int y){ int i; i=x+y; return i;}int minus(int x,int y) {int i; i=x-y; return(i);}int multip(int x,int 阅读全文

posted @ 2019-06-06 14:58 an同学 阅读(150) 评论(0) 推荐(0)

导航