P201821430029

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2020年11月30日

摘要: 201821430029 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验四 恶意代码技术 学生姓名 李沛翰 年级 2018级 区队 3区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016— 阅读全文
posted @ 2020-11-30 11:07 P201821430029 阅读(77) 评论(0) 推荐(0) 编辑

2020年11月16日

摘要: 201821430029 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 李沛翰 年级 2018级 区队 三区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 阅读全文
posted @ 2020-11-16 10:32 P201821430029 阅读(59) 评论(0) 推荐(0) 编辑

2020年11月14日

摘要: 201821430029 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 李沛翰 年级 2018 区队 三 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2 阅读全文
posted @ 2020-11-14 15:01 P201821430029 阅读(104) 评论(0) 推荐(0) 编辑

2020年10月19日

摘要: 201821430029 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 李沛翰 年级 2018 区队 三 指导教师 高见 信息技术与网络安全学院 2017年7月7日 实验任务总纲 阅读全文
posted @ 2020-10-19 10:51 P201821430029 阅读(86) 评论(0) 推荐(0) 编辑

2019年6月6日

摘要: 1. #include<stdio.h>int add(int x,int y){ int z; z=x+y; return z;}int minus(int x,int y){ int z; z=x-y; return z;}int multip(int x,int y){ int z; z=x* 阅读全文
posted @ 2019-06-06 15:03 P201821430029 阅读(92) 评论(0) 推荐(0) 编辑

2019年5月23日

摘要: 1. #include <stdio.h>int main(){ int a[10]; int i,j,k; printf("input 10 numbers :\n"); for(i=0;i<10;i++) scanf("%d",&a[i]); printf("\n"); for(j=0;j<10 阅读全文
posted @ 2019-05-23 15:20 P201821430029 阅读(152) 评论(0) 推荐(0) 编辑

2019年5月9日

摘要: 1.1while #include<stdio.h>int main(){ int i=22; long s=0; while(i<=1002) { s=s+i; i=i+20; } printf("s=%d\n",s); return 0;} 1.2do-while #include<stdio. 阅读全文
posted @ 2019-05-09 15:19 P201821430029 阅读(157) 评论(0) 推荐(0) 编辑

2019年4月25日

摘要: 1. #include<stdio.h>int main(){ char a,b,c,d,e; a=getchar(); b=getchar(); c=getchar(); d=getchar(); e=getchar(); putchar(a); putchar(b); putchar(c); p 阅读全文
posted @ 2019-04-25 15:28 P201821430029 阅读(99) 评论(0) 推荐(0) 编辑

2019年4月11日

摘要: 1.了解 #include <stdio.h>int main(){ int a,b sum; a=123; b=456; sum=a+b; printff("sum is %d\n",sum); return 0;} 2.分析 97,98在字符中对应a,b; char为字符型,一个字节,最多表示1 阅读全文
posted @ 2019-04-11 15:06 P201821430029 阅读(99) 评论(0) 推荐(0) 编辑

2019年3月27日

摘要: 阅读全文
posted @ 2019-03-27 22:06 P201821430029 阅读(123) 评论(0) 推荐(0) 编辑