摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 杜泽元 年级 2018级 区队 三区队 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年 阅读全文
posted @ 2020-11-30 10:30 P201821430035 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 杜泽元 年级 2018级 区队 三区队 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2020—2021 学年 阅读全文
posted @ 2020-11-16 10:37 P201821430035 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 杜泽元 年级 2018级 区队 三区队 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2020—2021 学 阅读全文
posted @ 2020-11-16 08:08 P201821430035 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 杜泽元 年级 2018级 区队 网安三区 指导教师 高见 信息技术与网络安全学院 2017年7月7日 实验任务总纲 2020—2021 阅读全文
posted @ 2020-10-19 10:04 P201821430035 阅读(75) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>int main(){ float average1(float a,float b,float c); float average2(float a,float b,float c,float d,float e); int a[5][3]; int i,j;  阅读全文
posted @ 2019-06-06 15:26 P201821430035 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 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; return(z); } int multip(int x,int y){ int z; z=x*y; return(z 阅读全文
posted @ 2019-06-06 15:06 P201821430035 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 1.#include <stdio.h> int main(){ int a[10],i,j,t; printf("the original numbers:\n"); for(i=0;i<10;i++){ scanf("%d",&a[i]); } printf("\n"); for(j=0;j<9 阅读全文
posted @ 2019-05-23 15:23 P201821430035 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 1. (1)用for循环 #include <stdio.h>int main(){ long s=0; int a; for(a=22;a<=1002;a=a+20){ s=s+a; } printf("%ld\n",s); return 0;} (2)用while循环 #include <std 阅读全文
posted @ 2019-05-09 15:00 P201821430035 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 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);  阅读全文
posted @ 2019-04-25 15:52 P201821430035 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 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(){ ch 阅读全文
posted @ 2019-04-11 14:57 P201821430035 阅读(159) 评论(0) 推荐(0) 编辑