2020年11月30日
摘要: 学 号201821430032 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 赵鹏 年级 2018级 区队 网安三区 指导教师 高见 信息技术与网络安全学院 2020年11月30日 实验 阅读全文
posted @ 2020-11-30 10:53 guofudiyilianan 阅读(22) 评论(0) 推荐(0) 编辑
  2020年11月16日
摘要: 学 号 201821430032 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 赵鹏 年级 2018级 区队 网安三区 指导教师 高见 信息技术与网络安全学院 2020年11月16日 实 阅读全文
posted @ 2020-11-16 10:47 guofudiyilianan 阅读(23) 评论(0) 推荐(0) 编辑
  2020年11月2日
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 赵鹏 年级 2018级 区队 网安三区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2020—2021 学 阅读全文
posted @ 2020-11-02 11:59 guofudiyilianan 阅读(60) 评论(0) 推荐(0) 编辑
  2020年10月19日
摘要: 学 号201821430032 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 赵鹏 年级 2018级 区队 网安三区 指导教师 高见 信息技术与网络安全学院 2020年10月19日 阅读全文
posted @ 2020-10-19 16:52 guofudiyilianan 阅读(30) 评论(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 阅读全文
posted @ 2019-06-06 14:33 guofudiyilianan 阅读(199) 评论(0) 推荐(0) 编辑
  2019年5月23日
摘要: #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[i]>a[i+ 阅读全文
posted @ 2019-05-23 14:42 guofudiyilianan 阅读(172) 评论(0) 推荐(0) 编辑
  2019年5月9日
摘要: #include <stdio.h>int main(){ long s=0; int i; for(i=22;i<=1002;i=i+20) { s=s+i; } printf("s=%ld\n",s); return 0;} #include <stdio.h>int main(){ long 阅读全文
posted @ 2019-05-09 14:38 guofudiyilianan 阅读(135) 评论(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); put 阅读全文
posted @ 2019-04-25 15:15 guofudiyilianan 阅读(120) 评论(0) 推荐(0) 编辑
  2019年4月11日
摘要: #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; c1=9 阅读全文
posted @ 2019-04-11 14:15 guofudiyilianan 阅读(123) 评论(0) 推荐(0) 编辑
  2019年3月27日
摘要: #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-27 21:21 guofudiyilianan 阅读(135) 评论(0) 推荐(0) 编辑