摘要: 实验报告 三 学 号 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 李春辉 年级 2018网络安全与执法 区队 三 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务 阅读全文
posted @ 2020-11-30 07:59 学渣辉 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 李春辉 年级 2018级 区队 网络安全与执法三区队 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016 阅读全文
posted @ 2020-11-30 07:58 学渣辉 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 学 号 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 李春辉 年级 201821430018 区队 三 指导教师 高见 信息技术与网络安全学院 2017年7月7日 实验任务总纲 2 阅读全文
posted @ 2020-10-19 15:51 学渣辉 阅读(104) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h"#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) 阅读全文
posted @ 2019-06-06 15:32 学渣辉 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 1. #include "stdafx.h"#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);} 阅读全文
posted @ 2019-06-06 15:06 学渣辉 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 1. #include "stdafx.h"#include "stdio.h"int main(int argc, char* argv[]){ int a[10]; int i,m,n; for(i=0;i<10;i++) scanf("%d",&a[i]); printf("\n"); for 阅读全文
posted @ 2019-05-23 15:38 学渣辉 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 1. #include "stdafx.h" #include <stdio.h> int main(int argc, char* argv[]) { long a,s; s=0; for(a=22;a<=1002;a+=20) s=s+a; printf("%d\n",s); return 0; 阅读全文
posted @ 2019-05-09 14:50 学渣辉 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 1. #include "stdafx.h" #include <stdio.h> int main(int argc, char* argv[]) { char a,b,c,d; a = getchar(); b = getchar(); c = getchar(); d = getchar(); 阅读全文
posted @ 2019-04-25 15:45 学渣辉 阅读(138) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h" #include <stdio.h> int main(int argc, char* argv[]) { int a,b,sum; a=123; b=456; sum=a+b; printf("sum is %d\n",sum); return 0; } # 阅读全文
posted @ 2019-04-11 15:10 学渣辉 阅读(154) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h"#include "stdlib.h"#include "stdio.h"#include "time.h" int main(int argc, char* argv[]){ int i; char c,gu; srand((unsigned)time(NUL 阅读全文
posted @ 2019-03-27 21:42 学渣辉 阅读(547) 评论(0) 推荐(0) 编辑