2020年11月30日
摘要: 学 号 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 张博炜 年级 2018级 区队 3区队 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—201 阅读全文
posted @ 2020-11-30 15:18 P201821430026 阅读(80) 评论(0) 推荐(0) 编辑
  2020年11月16日
摘要: 学 号 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 张博炜 年级 2018级 区队 三区队 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—201 阅读全文
posted @ 2020-11-16 17:57 P201821430026 阅读(32) 评论(0) 推荐(0) 编辑
  2020年11月11日
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 张博炜 年级 2018级 区队 三区队 指导教师 高见 信息技术与网络安全学院 2020年11月2日 实验任务总纲 2020—2021 学 阅读全文
posted @ 2020-11-11 18:10 P201821430026 阅读(128) 评论(0) 推荐(0) 编辑
  2020年10月24日
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 张博炜 年级 2018级 区队 三区队 指导教师 高见 信息技术与网络安全学院 2020年10月19日 实验任务总纲 2020—202 阅读全文
posted @ 2020-10-24 15:24 P201821430026 阅读(145) 评论(0) 推荐(0) 编辑
  2019年6月3日
摘要: int average(int a,int b,int c){ int m; m=(a+b+c)/3; return m;}#include <stdio.h>int main(){ int average(int a,int b,int c); int a[5][3]; int i,j; int 阅读全文
posted @ 2019-06-03 15:10 P201821430026 阅读(77) 评论(0) 推荐(0) 编辑
  2019年6月2日
摘要: 1 int add(int x,int y){ int z; z=x+y; return(z);} int minus(int x,int y){ int z; z=x>y?x-y:y-x; return(z);}int multip(int x,int y){ int z; z=x*y; retu 阅读全文
posted @ 2019-06-02 11:09 P201821430026 阅读(130) 评论(0) 推荐(0) 编辑
  2019年5月23日
摘要: 1 #include "stdafx.h" #include<stdio.h> int main(int argc, char* argv[]) { int i,p,q,temp; int a[10]; for(i=0;i<10;i++) scanf("%d",&a[i]); for(q=0;q<9 阅读全文
posted @ 2019-05-23 16:01 P201821430026 阅读(121) 评论(0) 推荐(0) 编辑
  2019年5月9日
摘要: 1.for循环 2.while循环 3.do while循环 2水仙花数 #include "stdafx.h" #include <stdio.h> int main(){ int a,b,c,d,e; int s=0 ; for(a=100;a<1000;a=a+1) { b=a/100; c= 阅读全文
posted @ 2019-05-09 15:19 P201821430026 阅读(118) 评论(0) 推荐(0) 编辑
  2019年4月25日
摘要: 1 #include "stdafx.h" #include <stdio.h> int main(){ char a,b,c,d,e; a=getchar(); b=getchar(); c=getchar(); d=getchar(); e=getchar(); putchar(a); putc 阅读全文
posted @ 2019-04-25 16:11 P201821430026 阅读(147) 评论(0) 推荐(0) 编辑
  2019年4月11日
摘要: 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 c1 阅读全文
posted @ 2019-04-11 15:26 P201821430026 阅读(99) 评论(0) 推荐(0) 编辑