摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 李婷婷 年级 2018 区队 网安四区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年 阅读全文
posted @ 2020-12-06 11:43 婷啊婷阿扎 阅读(130) 评论(0) 推荐(0)
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 李婷婷 年级 2018级 区队 网安四区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学 阅读全文
posted @ 2020-11-19 14:32 婷啊婷阿扎 阅读(494) 评论(0) 推荐(0)
摘要: 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 李婷婷 年级 2018级 区队 网安四区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年 第 一 学期 一、实验目的 1.加深并消化本课程授课内容,复习所学过的互联网搜索技巧、方法和技术; 阅读全文
posted @ 2020-11-10 22:56 婷啊婷阿扎 阅读(218) 评论(0) 推荐(0)
摘要: 学 号 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 李婷婷 年级 2018级 区队 网安四区 指导教师 高见 信息技术与网络安全学院 2017年7月7日 实验任务总纲 2017— 阅读全文
posted @ 2020-11-10 22:48 婷啊婷阿扎 阅读(110) 评论(0) 推荐(0)
摘要: #include <stdio.h> double average1 (int a,int b,int c){ double x; x=(a+b+c)/3; return x; } double average2 (int a,int b,int c,int d,int e){ double y; 阅读全文
posted @ 2019-06-17 14:43 婷啊婷阿扎 阅读(92) 评论(0) 推荐(0)
摘要: #include void add(int a,int b) { int c; c=a+b; printf("%d\n",c); } void minus(int a,int b) { int c; c=a-b; printf("%d\n",c); } void multip(int a,int b) { int c; c=a... 阅读全文
posted @ 2019-06-03 14:41 婷啊婷阿扎 阅读(188) 评论(0) 推荐(0)
摘要: #include int main(int argc, char* argv[]) { int a[10]={0}; int i,j,temp; for(i=0;ia[j+1]){ temp=a[j]; a[j]=a[j+1]; a[j+1]=temp; ... 阅读全文
posted @ 2019-05-20 14:36 婷啊婷阿扎 阅读(190) 评论(0) 推荐(0)
摘要: 1.1 for循环 1.2 while循环 1.3 do-while循环 2. 3. 阅读全文
posted @ 2019-05-06 14:34 婷啊婷阿扎 阅读(149) 评论(0) 推荐(0)
摘要: #include int main() { char a,b,c,d,e; a=getchar(); b=getchar(); c=getchar(); d=getchar(); e=getchar(); putchar(a); putchar(b); putchar(c); putchar(d); putc... 阅读全文
posted @ 2019-04-08 16:09 婷啊婷阿扎 阅读(170) 评论(0) 推荐(0)
摘要: #include int main() { int a,b,sum; a=123; b=456; sum=a+b; printf("sum is %d\n",sum); return 0; } #include int main() { ch... 阅读全文
posted @ 2019-04-08 15:19 婷啊婷阿扎 阅读(149) 评论(0) 推荐(0)