摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 张炎 年级 2018级 区队 四 区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年  阅读全文
posted @ 2020-12-04 09:04 p201821440019 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 张炎 年级 2018级 区队 四区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年 第 阅读全文
posted @ 2020-11-19 20:24 p201821440019 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 张炎 年级 2018级 区队 四区队 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年 阅读全文
posted @ 2020-11-10 20:50 p201821440019 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 张炎 年级 2018级 区队 四区队 指导教师 高见 信息技术与网络安全学院 2017年7月7日 实验任务总纲 2017—2018 学 阅读全文
posted @ 2020-10-24 11:37 p201821440019 阅读(95) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> int average(int a,int b,int c){ int x; x=(a+b+c)/3; return x;} int Q(int a,int b,int c,int d,int e){ int x; x=(a+b+c+d+e)/5; return 阅读全文
posted @ 2019-06-03 15:50 p201821440019 阅读(256) 评论(0) 推荐(0) 编辑
摘要: #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 z; z=max2(max2(a,b),max2(c,d)); 阅读全文
posted @ 2019-06-03 15:18 p201821440019 阅读(287) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> int prime(int a){ int b; for(b=2;b<=a;b++) if(a%b==0&&a==b) return 1; else break; return 0; } int main(){ int a,b; scanf("%d",&a); b 阅读全文
posted @ 2019-06-03 14:59 p201821440019 阅读(199) 评论(0) 推荐(0) 编辑
摘要: int add(int a,int b){ int c; c=a+b; return c;} int minus(int a,int b){ int c; c=a-b; return c;} int multip(int a,int b){ int c; c=a*b; return c;} int 阅读全文
posted @ 2019-06-03 14:26 p201821440019 阅读(474) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<math.h> int main(){ int a,i,b,l=0; for(a=2;a<=100;a++){ b=sqrt(a); for(i=2;i<=b;i++) if(a%i==0){ l++; } if(l==0){ printf("% 阅读全文
posted @ 2019-05-20 15:10 p201821440019 阅读(228) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> int main(){ char a[100]; int b=0,i; gets(a); for(i=0;a[i]!='\0';i++){ if((a[i]>='a'&&a[i]<='z')||(a[i]>='A'&&a[i]<='Z')){ do{ i++; } 阅读全文
posted @ 2019-05-20 14:43 p201821440019 阅读(238) 评论(0) 推荐(0) 编辑