摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 冯帅 年级 2018 区队 网安七区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年  阅读全文
posted @ 2020-12-03 09:41 wsedws 阅读(39) 评论(0) 推荐(0)
摘要: 学 号 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 冯帅 年级 2018 区队 七区 指导教师 高见 信息技术与网络安全学院 2017年7月7日 实验任务总纲 2017—2018 阅读全文
posted @ 2020-12-01 19:22 wsedws 阅读(105) 评论(0) 推荐(0)
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 冯帅 年级 2018 区队 18网实 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年 阅读全文
posted @ 2020-11-19 09:42 wsedws 阅读(56) 评论(0) 推荐(0)
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 冯帅 年级 2018 区队 网七 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年 第 阅读全文
posted @ 2020-11-19 08:36 wsedws 阅读(55) 评论(0) 推荐(0)
摘要: #include <stdio.h> float average1[5],average2[3]; void average(float score[5][3],float n,float judge){ int i,j; float sum; if(judge==1){ for(i=0;i<5;i 阅读全文
posted @ 2019-06-03 15:55 wsedws 阅读(108) 评论(0) 推荐(0)
摘要: #include <stdio.h> int add(int x,int y){ int sum; sum=x+y; return sum; } int minus(int x,int y){ int i; i=x-y; return i; } int multip(int x,int y){ in 阅读全文
posted @ 2019-06-03 14:36 wsedws 阅读(152) 评论(1) 推荐(0)
摘要: #include <stdio.h> int main(){ int num[10]; int i,j; int a=0; for(i=0;i<10;i++) scanf("%d",&num[i]); for(i=0;i<10;i++) for(j=0;j<10-i;j++){ if(num[j]> 阅读全文
posted @ 2019-05-20 14:57 wsedws 阅读(116) 评论(0) 推荐(0)
摘要: #include <stdio.h> int main(){ int a; long int s=0; for(a=22;a<=1002;a+=20) s=s+a; printf("%d",s); } #include <stdio.h> int main(){ int a=22; long int 阅读全文
posted @ 2019-05-06 14:43 wsedws 阅读(76) 评论(0) 推荐(0)
摘要: #include <stdio.h> int main(){ int a,b,sum; a=123; b=456; sum=a+b; printf("sum is %d\n",sum); return 0; } #include <stdio.h> int main(){ char c1,c2; c 阅读全文
posted @ 2019-04-08 14:45 wsedws 阅读(121) 评论(2) 推荐(0)
摘要: #include <stdio.h>#include <math.h>#include <time.h>#include <stdlib.h>#include <windows.h> int main (){ int i;char c,gu;srand((unsigned)time(NULL));c 阅读全文
posted @ 2019-03-25 11:42 wsedws 阅读(84) 评论(0) 推荐(0)