2020年11月30日
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 郑博文 年级 2018级 区队 三区队 指导教师 高见 信息技术与网络安全学院 2020年11月29日 实验任务总纲 2020—2021 学 阅读全文
posted @ 2020-11-30 13:06 18网三郑博文 阅读(43) 评论(0) 推荐(0) 编辑
  2020年11月16日
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 郑博文 年级 2018 区队 三区队 指导教师 高见 信息技术与网络安全学院 2020年11月14日 实验任务总纲 2020—2021 学年 阅读全文
posted @ 2020-11-16 10:46 18网三郑博文 阅读(85) 评论(0) 推荐(0) 编辑
  2020年11月2日
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 郑博文 年级 2018级 区队 网络安全与执法三区队 指导教师 信息技术与网络安全学院 2020年11月1日 实验任务总纲 2020—20 阅读全文
posted @ 2020-11-02 19:23 18网三郑博文 阅读(169) 评论(0) 推荐(1) 编辑
  2020年10月20日
摘要: 恢复内容开始 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 郑博文 年级 2018 区队 18网三 指导教师 高见 信息技术与网络安全学院 2020年10月19日 实验任务总纲 2 阅读全文
posted @ 2020-10-20 10:01 18网三郑博文 阅读(164) 评论(0) 推荐(0) 编辑
  2019年6月6日
摘要: #include int add(int a,int b); int minus(int a,int b); int multip(int a,int b); int quotient(int a,int b); int mod(int a,int b); int main() { int a,b; printf("请输入两个数字"); scanf("%d%d",&a,... 阅读全文
posted @ 2019-06-06 15:50 18网三郑博文 阅读(99) 评论(0) 推荐(0) 编辑
  2019年5月23日
摘要: #include int main() { int a[10]; int i,j,m; for(i=0;ia[j+1]) { m=a[j+1]; a[j+1]=a[j]; a[j]=m; } for(i=0;i int main() { int a[3][3]; printf("请输入行列式"); int hang,lie; int sum=0; ... 阅读全文
posted @ 2019-05-23 15:28 18网三郑博文 阅读(95) 评论(0) 推荐(0) 编辑
  2019年4月25日
摘要: For 循环 #include int main() { int a,b,s; for(s=0,a=22;a int main() { long int s=0; int a=22; while(a int main() { long int s=0; int a=22; do { s+=a; a+=20; ... 阅读全文
posted @ 2019-04-25 15:01 18网三郑博文 阅读(132) 评论(0) 推荐(0) 编辑
  2019年4月11日
摘要: ********************************************************************************** ******************************************************************* 阅读全文
posted @ 2019-04-11 16:19 18网三郑博文 阅读(91) 评论(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;} *********************************************** 阅读全文
posted @ 2019-04-11 15:01 18网三郑博文 阅读(52) 评论(0) 推荐(0) 编辑
  2019年3月28日
摘要: #include "stdio.h"#include "stdlib.h"#include "time.h"int main(){ int i; char c,gu; srand((unsigned)time(NULL)); c=6; gu=rand()%6+1; for (i=1;i<=100;i 阅读全文
posted @ 2019-03-28 12:43 18网三郑博文 阅读(114) 评论(0) 推荐(0) 编辑