摘要: 学 号 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 郑云中 年级 2018级 区队 网络安全与执法7区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 20 阅读全文
posted @ 2020-12-03 09:21 雲中 阅读(54) 评论(0) 推荐(0)
摘要: 学 号 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 郑云中 年级 2018级 区队 网络安全与执法七区队 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2 阅读全文
posted @ 2020-11-19 08:18 雲中 阅读(93) 评论(0) 推荐(0)
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 郑云中 年级 2018级 区队 网络安全与执法七区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016— 阅读全文
posted @ 2020-11-07 17:27 雲中 阅读(399) 评论(0) 推荐(0)
摘要: 学 号 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 郑云中 年级 2018级 区队 网络安全与执法七区队 指导教师 高见 信息技术与网络安全学院 2017年7月7日 实验任务总纲 阅读全文
posted @ 2020-10-28 21:17 雲中 阅读(82) 评论(0) 推荐(0)
摘要: #include #include typedef struct Fushu { int shi, xu; struct Fushu *next; }Fushu; //void init(Fushu *s) { //s->next = NULL; //s->shi = 0; //s->xu = 0; //} Fushu *insert(Fushu *fushu, Fu... 阅读全文
posted @ 2019-10-29 11:07 雲中 阅读(186) 评论(1) 推荐(0)
摘要: #include<stdio.h>double averange(double a,double b,double c){ return (a+b+c)/3;}double averange2(double a,double b,double c,double d,double e){ return 阅读全文
posted @ 2019-06-03 15:56 雲中 阅读(178) 评论(0) 推荐(0)
摘要: #include<stdio.h> int add(int x,int y){ return x+y; }int minus(int x,int y){ return x-y; }int multip(int x,int y){ return x*y; }int quotient(int x,int 阅读全文
posted @ 2019-06-03 14:43 雲中 阅读(213) 评论(0) 推荐(0)
摘要: #include<stdio.h> int main(){ int num[10]; int p,q,s; int i,j,k; for(i = 1;i <= 10;i++){ scanf("%d",&num[i-1]); } for(j=0;j<10;j++){ p = num[j]; q = j 阅读全文
posted @ 2019-05-20 14:52 雲中 阅读(140) 评论(0) 推荐(0)
摘要: #include<stdio.h>int main(){ int a; long int s=0; for(a=22;a<=1002;a=a+20){ s = s+a; } printf("%d",s);} #include<stdio.h>int main(){ int a = 22; long 阅读全文
posted @ 2019-05-06 14:39 雲中 阅读(149) 评论(0) 推荐(0)
摘要: #include<stdio.h> int main(){ char a,b,c,d,e; a = getchar(); b = getchar(); c = getchar(); d = getchar(); e = getchar(); putchar(a); putchar(b); putch 阅读全文
posted @ 2019-04-22 15:06 雲中 阅读(265) 评论(0) 推荐(0)