摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 万雨涛 年级 2018 区队 三 指导教师 高见 信息技术与网络安全学院 实验任务总纲 一、实验目的 1.通过对木马的练习,使读者理解和掌握 阅读全文
posted @ 2020-11-30 10:40 万雨涛 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 学 号 201821430019 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 万雨涛 年级 2018 区队 三区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务 阅读全文
posted @ 2020-11-29 21:10 万雨涛 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 万雨涛 年级 2018 区队 三区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年  阅读全文
posted @ 2020-11-23 21:02 万雨涛 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 学 号 201821430019 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 万雨涛 年级 201821430019 区队 3区 指导教师 高见 信息技术与网络安全学院 2017 阅读全文
posted @ 2020-11-02 09:10 万雨涛 阅读(58) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>int main(){ char a,b,c,d,e; printf("请输入五个字符:\n"); a=getchar(); b=getchar(); c=getchar(); d=getchar(); e=getchar(); putchar(a); putch 阅读全文
posted @ 2019-06-20 15:49 万雨涛 阅读(85) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> #include <windows.h> #include <stdlib.h> int average(int a,int b,int c) { int av; av=(a+b+c)/3; return av; } in 阅读全文
posted @ 2019-06-06 14:21 万雨涛 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 内容一 #include <stdio.h> int add(int a,int b) { return a+b; } int minus (int a,int b) { return a-b; } int multip (int a,int b) { return a*b; } int quoti 阅读全文
posted @ 2019-06-06 14:15 万雨涛 阅读(160) 评论(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-23 14:21 万雨涛 阅读(137) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> int main() { int i,s=20,sum=0; for(i=22;i<=1002;i=i+s) { sum=sum+i; } printf("sum=%d\n",sum); return 0; } #include<stdio.h>int main( 阅读全文
posted @ 2019-05-09 15:33 万雨涛 阅读(123) 评论(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;} #include<stdio.h>int main(){ char c1,c2; c1=97; 阅读全文
posted @ 2019-04-11 14:25 万雨涛 阅读(123) 评论(0) 推荐(0) 编辑