2020年11月27日

摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 张琨 年级 2018 区队 四 指导教师 高见 信息技术与网络安全学院 2020年12月3日 实验任务总纲 2020—2021 学年 第 一 阅读全文
posted @ 2020-11-27 09:34 P201821440030 阅读(45) 评论(0) 推荐(0) 编辑

2020年11月20日

摘要: 学 号 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 张琨 年级 2018 区队 四 指导教师 高见 信息技术与网络安全学院 2020年11月7日 实验任务总纲 2020—2021 学年 阅读全文
posted @ 2020-11-20 08:03 P201821440030 阅读(39) 评论(0) 推荐(0) 编辑

2020年11月10日

摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 张琨 年级 2018 区队 网安四区 指导教师 高见 信息技术与网络安全学院 2020年11月5日 实验任务总纲 2020—2021 学年 阅读全文
posted @ 2020-11-10 07:06 P201821440030 阅读(92) 评论(0) 推荐(0) 编辑

2020年10月22日

摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 张琨 年级 2018 区队 四 指导教师 高见 信息技术与网络安全学院 2017年7月7日 实验任务总纲 2017—2018 学年 第 阅读全文
posted @ 2020-10-22 15:08 P201821440030 阅读(135) 评论(0) 推荐(0) 编辑

2019年6月17日

摘要: #include<stdio.h> int average(int x,int y,int z) { int s; s=(x+y+z)/3; return s; } int main() { int average(int x,int y,int z); int a[5][3],i,j,s,s1; 阅读全文
posted @ 2019-06-17 14:10 P201821440030 阅读(77) 评论(0) 推荐(0) 编辑

2019年6月3日

摘要: 一 和差积商 #include "stdio.h" int add(int a,int b) { int c; c=b+a; return c; } int minus(int a,int b) { int c; c=a-b; return c; } int multip(int a,int b) 阅读全文
posted @ 2019-06-03 15:23 P201821440030 阅读(67) 评论(0) 推荐(0) 编辑

2019年5月20日

摘要: 1.比大小 #include<stdio.h> int main() { int a[10]; int i,j,t; for(i=0;i<10;i++) scanf("%d",&a[i]); printf("\n"); for(j=0;j<9;j++) for(i=0;i<9-j;i++) if(a 阅读全文
posted @ 2019-05-20 14:30 P201821440030 阅读(114) 评论(0) 推荐(0) 编辑

2019年5月6日

摘要: 1.计算s=22+42+62+……+1002 (1)for循环 #include"stdio.h" int main() { int i; long s; s=0; for(i=22;i<=1002;i+=20) s=s+i; printf("%d\n",s); return 0; } (2)whi 阅读全文
posted @ 2019-05-06 14:50 P201821440030 阅读(105) 评论(0) 推荐(0) 编辑

2019年4月22日

摘要: (1)输入,输出 #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:42 P201821440030 阅读(79) 评论(0) 推荐(0) 编辑

2019年4月8日

摘要: #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 15:23 P201821440030 阅读(78) 评论(0) 推荐(0) 编辑