摘要: Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 吴启立 年级 2018级 区队 网安四区 指导教师 高见 信息技术与网络安全学院 2020年12月3日 实验任务总纲 2020—2021 学年 第 一 学期 阅读全文
posted @ 2020-12-03 17:44 吴启立 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 学 号201821440031 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 吴启立 年级 2018级 区队 网络安全与执法四区队 指导教师 高见 信息技术与网络安全学院 2020年11 阅读全文
posted @ 2020-11-19 17:24 吴启立 阅读(660) 评论(0) 推荐(0) 编辑
摘要: 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 吴启立 年级 2018级 区队 18网四 指导教师 高见 信息技术与网络安全学院 2020年11月2日 实验任务总纲 2020—2021 学年 第 一 学期 一、实验目的 1.加深并消化本课程授课内容,复习所学过的互联网搜索技巧、方法和技术; 阅读全文
posted @ 2020-11-12 12:21 吴启立 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 吴启立 年级 2018级 区队 18网四 指导教师 高见 信息技术与网络安全学院 2017年7月7日 实验任务总纲 2020—2021 阅读全文
posted @ 2020-10-23 21:15 吴启立 阅读(491) 评论(0) 推荐(0) 编辑
摘要: float average(int a,int b,int c) { float z; z=(a+b+c)/3; return z; } float F(int a,int b,int c,int d,int e) { float z; z=(a+b+c+d+e)/5; return z; } #i 阅读全文
posted @ 2019-06-17 14:00 吴启立 阅读(211) 评论(0) 推荐(0) 编辑
摘要: #include int main(){ int y,m,d; scanf("%d-%d-%d",&y,&m,&d); if(m==1||m==3||m==5||m==7||m==8||m==10||m==12){ if(d>0&&d0&&d0){ ... 阅读全文
posted @ 2019-06-04 08:52 吴启立 阅读(353) 评论(0) 推荐(0) 编辑
摘要: #include #include int main(){ double h,c; double j,s; double a,b; scanf("%lf%lf",&a,&b); h=a+b; c=a-b; j=a*b; s=a/b; printf("%lf\n",h); printf("%lf\n",c); ... 阅读全文
posted @ 2019-06-03 15:35 吴启立 阅读(222) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> int main(){ int a[10]; int i,j,k; for(i=0;i<10;i++){ scanf("%d",&a[i]); } for(i=0;i<10;i++){ for(j=0;j<10-i-1;j++){ if(a[j]>a[j+1]){ 阅读全文
posted @ 2019-05-20 16:04 吴启立 阅读(224) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main(){ int a=22,s=0; for(;a<1003;a=a+20) { s=s+a; } while(a<1003;) { s=s+a; a=a+20; } do{ s=s+a; } while(a<1003;); printf("%d\ 阅读全文
posted @ 2019-05-06 15:31 吴启立 阅读(151) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main(){ int a,b,c,d,e; a=getchar(); b=getchar(); c=getchar(); d=getchar(); e=getchar(); putchar(a); putchar(b); putchar(c); put 阅读全文
posted @ 2019-04-24 14:00 吴启立 阅读(150) 评论(0) 推荐(0) 编辑