2020年12月3日

网络对抗---实验四

摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 年级 区队 指导教师 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年 第 一 学期 一、实验目的 1. 阅读全文

posted @ 2020-12-03 16:32 p201821430005 阅读(72) 评论(0) 推荐(0) 编辑

2020年11月19日

网络对抗---实验三

摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 郭寒洋 年级 2018 区队 18网实 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年 阅读全文

posted @ 2020-11-19 08:20 p201821430005 阅读(127) 评论(1) 推荐(0) 编辑

2020年11月14日

网络对抗---实验二

摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 郭寒洋 年级 2018 区队 网络实验班 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017  阅读全文

posted @ 2020-11-14 15:57 p201821430005 阅读(32) 评论(0) 推荐(0) 编辑

2020年10月27日

网络对抗---实验一

摘要: 学 号 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 郭寒洋 年级 2018 区队 18网络实验班 指导教师 高见 信息技术与网络安全学院 2017年7月7日 实验任务总纲 201 阅读全文

posted @ 2020-10-27 22:37 p201821430005 阅读(85) 评论(0) 推荐(0) 编辑

2019年5月23日

C语言--实验六

摘要: #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)/3; return av; } int 阅读全文

posted @ 2019-05-23 15:53 p201821430005 阅读(141) 评论(2) 推荐(0) 编辑

C语言--实验五

摘要: 内容一 #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(i 阅读全文

posted @ 2019-05-23 14:44 p201821430005 阅读(76) 评论(0) 推荐(0) 编辑

2019年5月9日

C语言--实验四

摘要: 内容一 #include <stdio.h> void select_sort(int a[],int n) { for(int i=0; i<n-1; i++) { int max_index = i; for(int j=i+1; j<n; j++) { if(a[j] > a[max_inde 阅读全文

posted @ 2019-05-09 15:52 p201821430005 阅读(171) 评论(0) 推荐(0) 编辑

2019年4月25日

C语言--实验三

摘要: 内容一 #include <stdio.h> int main() { int i; long s; s=0; for(i=22;i<=1002;i=i+20) { s=i+s; } printf("%d\n",s); return 0; } #include <stdio.h> void main 阅读全文

posted @ 2019-04-25 15:58 p201821430005 阅读(138) 评论(0) 推荐(0) 编辑

C语言--实验二

摘要: 内容一 #include <stdio.h> void main() { char a[5]; scanf("%s",&a); printf("%s\n",a); } 内容二 #include <stdio.h>void main(){ int year; printf("Please input 阅读全文

posted @ 2019-04-25 15:34 p201821430005 阅读(154) 评论(3) 推荐(0) 编辑

2019年4月11日

C语言--实验一

摘要: (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 14:19 p201821430005 阅读(150) 评论(0) 推荐(0) 编辑

导航