2020年12月6日
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 孙炳基 年级 2018级 区队 3 指导教师 高见 信息技术与网络安全学院 2018年12月7日 实验任务总纲 2016—2017 学年 第 阅读全文
posted @ 2020-12-06 09:09 二天一流 阅读(26) 评论(0) 推荐(0) 编辑
  2020年11月16日
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 孙炳基 年级 2018级 区队 3 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年 第 阅读全文
posted @ 2020-11-16 10:09 二天一流 阅读(252) 评论(0) 推荐(0) 编辑
  2020年11月11日
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 孙炳基 年级 2018级 区队 3 指导教师 高见 信息技术与网络安全学院 2020年11月7日 实验任务总纲 2016—2017 学年  阅读全文
posted @ 2020-11-11 16:25 二天一流 阅读(831) 评论(0) 推荐(0) 编辑
  2020年10月21日
摘要: 学 号:201821430007 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 孙炳基 年级 2018级 区队 3区 指导教师 高见 信息技术与网络安全学院 2017年7月7日 实 阅读全文
posted @ 2020-10-21 16:24 二天一流 阅读(51) 评论(0) 推荐(0) 编辑
  2019年6月20日
摘要: #include<stdio.h>float average3(float a,float b,float c){float d,f;d=a+b+c;f=d/3;return f;}float average5(float a,float b,float c,float d,float e){flo 阅读全文
posted @ 2019-06-20 12:21 二天一流 阅读(90) 评论(0) 推荐(0) 编辑
  2019年6月6日
摘要: #include<stdio.h>int add(int x,int y){int z;z=x+y;return (z);}int minus(int x,int y){int z;z=x-y;return (z);}int multip(int x,int y){int z;z=x*y;retur 阅读全文
posted @ 2019-06-06 15:16 二天一流 阅读(183) 评论(0) 推荐(0) 编辑
  2019年5月23日
摘要: #include<stdio.h> int main() { int a[10]; int i,j,t; printf("请输入10个数\n"); for(i=0;i<=9;i++) scanf("%d",&a[i]); for(j=0;j<9;j++) for(i=0;i<9-j;i++) if( 阅读全文
posted @ 2019-05-23 15:08 二天一流 阅读(159) 评论(0) 推荐(0) 编辑
  2019年5月9日
摘要: #include<stdio.h> int main(){ int a,b,c,j; j=0; for(a=1;a<=5;a++) { for(b=1;b<=5;b++) { for(c=1;c<=5;c++) { if(a!=b&&b!=c&&a!=c) {j++; printf("%d%d%d\ 阅读全文
posted @ 2019-05-09 14:53 二天一流 阅读(179) 评论(0) 推荐(0) 编辑
  2019年4月25日
摘要: #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); putchar(c); putc 阅读全文
posted @ 2019-04-25 15:24 二天一流 阅读(194) 评论(0) 推荐(0) 编辑
  2019年4月11日
摘要: #include<stdio.h>int main(){char c1,c2;c1=97;c2=98;printf("c1=%c,c2=%c\n",c1,c2);printf("c1=%d,c2=%d\n",c1,c2);return 0;} #include<stdio.h> int main() 阅读全文
posted @ 2019-04-11 14:27 二天一流 阅读(104) 评论(0) 推荐(0) 编辑