摘要: 学 号 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 刘鑫研 年级 2018级 区队 四区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 阅读全文
posted @ 2020-11-26 16:09 p_201821440046 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 刘鑫研 年级 2018级 区队 四区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年  阅读全文
posted @ 2020-11-19 16:22 p_201821440046 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 刘鑫研 年级 2018级 区队 网安四区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017  阅读全文
posted @ 2020-11-06 00:29 p_201821440046 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 实验报告 实验一 网络侦查与网络扫描 学生姓名 刘鑫研 年级 2018级 区队 网安四区 指导教师 高见 信息技术与网络安全学院 2017年7月7日 实验任务总纲 2017—2018 学年 第 一 学期 一、实验目的 1.加深并消化本课程授课内容,复习所学过的互联网搜索技巧、方法和技术; 2.了解并 阅读全文
posted @ 2020-10-23 23:50 p_201821440046 阅读(132) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <stdlib.h> #define ERROR 0 #define OK 1 typedef struct Vector { int size; int length; int *data; } Vector; void init(Vector *vector,int size) { vector->size=size; vector->l 阅读全文
posted @ 2019-10-28 21:58 p_201821440046 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 质因数分解# include main() { int n,i; scanf("%d",&n); printf("%d=",n) ; for(i=2;i main() { int i,j,x; int end,temp1,temp2; int a[11]={10,20,30,40,50,60,70,80,90,100}; s... 阅读全文
posted @ 2019-06-20 17:41 p_201821440046 阅读(248) 评论(0) 推荐(0) 编辑
摘要: # include main() { int i,j,k; for(i=1;i<=9;i++) { for(j=i;j<=9;j++) { k=i*j; printf("%d*%d=%d ",i,j,k); } pr... 阅读全文
posted @ 2019-06-18 12:17 p_201821440046 阅读(129) 评论(0) 推荐(0) 编辑
摘要: # include "stdio.h" int main(int argc, char* argv[]) { int i,j,s; int count; count=0; for(i=2;i<=1000;i++) { s=0; for(j=1;j<i;j++) { if(i%j=... 阅读全文
posted @ 2019-06-17 16:15 p_201821440046 阅读(182) 评论(0) 推荐(0) 编辑
摘要: #include "stdio.h" #include "stdio.h" int main(int argc, char* argv[]) { int n,i,j; int year,month,day; printf("年: "); scanf("%d",&year); printf("月: "); scanf("%d",&month); ... 阅读全文
posted @ 2019-06-03 14:55 p_201821440046 阅读(149) 评论(0) 推荐(0) 编辑
摘要: # include # include int main(int argc, char* argv[]) { int i,j,k,n; int a[100]; n=sqrt(100); for(j=2;j<=n;j++) { if(a[j]!=1) { for(k=2;k<=100/j;k++)... 阅读全文
posted @ 2019-05-20 18:35 p_201821440046 阅读(214) 评论(0) 推荐(0) 编辑