摘要: 201821430022 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 胡鑫龙 年级 2018级 区队 三区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 阅读全文
posted @ 2020-11-30 09:55 Vaik134 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 胡鑫龙 年级 2018级 区队 三区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年  阅读全文
posted @ 2020-11-16 18:49 Vaik134 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 胡鑫龙 年级 2018级 区队 三区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年 阅读全文
posted @ 2020-11-02 10:31 Vaik134 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 201821430022 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 胡鑫龙 年级 2018级 区队 三区 指导老师 高见 信息技术与网络安全学院 2017年7月7日 实验任务总 阅读全文
posted @ 2020-10-19 09:28 Vaik134 阅读(139) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<stdlib.h> typedef struct Node{ int Data; struct Node *Next; } LinkStack ; LinkStack *CreateStack(){ LinkStack *S; S = (Link 阅读全文
posted @ 2019-11-04 10:44 Vaik134 阅读(116) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<stdlib.h> typedef struct fushu { int xubu; int shibu; struct fushu *next; }fushu_node,*fushu; int MUL(fushu *A,fushu B,fush 阅读全文
posted @ 2019-11-04 09:57 Vaik134 阅读(114) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include int average(int a,int b,int c) { int av; av=(a+b+c)/3; return av; } int average1(int a,int b,int c,int d,int f) { int av; av=(a+b+c+d+f)/5; return av; }... 阅读全文
posted @ 2019-05-23 15:01 Vaik134 阅读(103) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int add( int x,int y) { int n; n=x+y; return n; } int minus( int x,int y) { int n; n=x-y; return n; } int multip( int x,int y) { in 阅读全文
posted @ 2019-05-09 15:45 Vaik134 阅读(140) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> void swap(int *x,int *y) { int temp; temp=*x; *x=*y; *y=temp; } int main() { int i,j; int a[10]; for(i=0;i<10;i++) {scanf("%d",&a[i 阅读全文
posted @ 2019-05-09 14:52 Vaik134 阅读(194) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main() { int i; long s; s=0; for(i=22;i<=1002;i=i+20) { s=i+s; } printf("%d\n",s); return 0; } #include <stdio.h>int main(){ in 阅读全文
posted @ 2019-04-25 15:05 Vaik134 阅读(102) 评论(0) 推荐(0) 编辑