摘要: 学 号 201821430004 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 董博 年级 2018级 区队 网安三去 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验 阅读全文
posted @ 2020-11-30 22:08 庖牺 阅读(101) 评论(0) 推荐(0)
摘要: 学 号 201821430004 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 董博 年级 2018级 区队 网安三区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验 阅读全文
posted @ 2020-11-16 20:37 庖牺 阅读(119) 评论(0) 推荐(0)
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 董博 年级 2018级 区队 网安三区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学 阅读全文
posted @ 2020-11-02 21:30 庖牺 阅读(86) 评论(0) 推荐(0)
摘要: 学 号 201821430004 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 董博 年级 2018级 区队 网安三区 指导教师 高见 信息技术与网络安全学院 2017年7月7日 阅读全文
posted @ 2020-10-19 12:27 庖牺 阅读(60) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdlib.h> #define OK 1 #define ERROR 0 #define NO 0 #define ADD_SIZE 20 #define INIT_SIZE 10 typedef int Status; typedef 阅读全文
posted @ 2019-11-04 10:17 庖牺 阅读(115) 评论(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 15:51 庖牺 阅读(100) 评论(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 quotient(in 阅读全文
posted @ 2019-06-06 15:35 庖牺 阅读(133) 评论(0) 推荐(0)
摘要: #include<stdio.h> #include<math.h> int main(int argc, char* argv[]) { int a[10]; int i,j,t; printf("input 10 numbers:\n"); for(i=0;i<10;i++) scanf("%d 阅读全文
posted @ 2019-05-23 16:02 庖牺 阅读(93) 评论(0) 推荐(0)
摘要: #include<stdio.h>#include<math.h>int main(){ long int s=0,a; for(a=22;a<=1002;a=a+20) s=s+a; printf("%d\n",s); return 0;} #include<stdio.h>#include<ma 阅读全文
posted @ 2019-05-09 15:48 庖牺 阅读(174) 评论(0) 推荐(0)
摘要: #include<stdio.h>int main(){ char a,b,c,d,e; scanf("%c%c%c%c%c",&a,&b,&c,&d,&e); putchar(a); putchar(b); putchar(c); putchar(d); putchar(e); return 0; 阅读全文
posted @ 2019-04-25 16:17 庖牺 阅读(156) 评论(0) 推荐(0)