摘要: 学 号201821430003 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 冯云 年级 2018 区队 3 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 阅读全文
posted @ 2020-11-30 10:33 p201821430003 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 学 号201821430003 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 冯云 年级 2018 区队 3 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 阅读全文
posted @ 2020-11-16 10:23 p201821430003 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 冯云 年级 2018 区队 三 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年 第  阅读全文
posted @ 2020-11-02 10:10 p201821430003 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 学 号 201821430003 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 冯云 年级 2018 区队 网安三区 指导教师 高见 信息技术与网络安全学院 2017年7月7日 实 阅读全文
posted @ 2020-10-19 09:53 p201821430003 阅读(118) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> 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 阅读全文
posted @ 2019-06-06 14:33 p201821430003 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 1. #include <stdio.h> int add(int a,int b) { int sum; sum = a + b; return sum; } int minus(int a,int b) { int i; i = a - b; return i; } int multip(int 阅读全文
posted @ 2019-06-06 14:22 p201821430003 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 1、 #include<stdio.h> void main() { int a[10]; int i,j,k; printf("输入10个数字:"); for(i=0;i<10;i++) scanf("%d",&a[i]); printf("\n"); for(j=0;j<9;j++) for(i 阅读全文
posted @ 2019-05-23 15:21 p201821430003 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 1.1 #include<stdio.h> void main() { long int s,i; s=0; for(i=22;i<=1002;i=i+20) { s=s+i; } printf("%ld\n",s); } 1.2 #include<stdio.h> void main() { lo 阅读全文
posted @ 2019-05-09 15:03 p201821430003 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 1、 #include<stdio.h> void main() { char a,b,c,d,e; a=getchar(); b=getchar(); c=getchar(); d=getchar(); e=getchar(); putchar(a); putchar(b); putchar(c) 阅读全文
posted @ 2019-04-25 15:30 p201821430003 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 1、 #include<stdio.h>int main(){ int a,b,sum; a = 123; b = 456; sum = a+b; printf("sum is %d\n",sum); return 0;} 2、 #include<stdio.h> int main() { char 阅读全文
posted @ 2019-04-11 14:45 p201821430003 阅读(95) 评论(0) 推荐(0) 编辑