摘要: 学 号201821440008 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 肖乙丁 年级 2018级 区队 18网四 指导教师 高见老师 信息技术与网络安全学院 2016年11月7日 阅读全文
posted @ 2020-12-03 16:18 p201821440008 阅读(46) 评论(0) 推荐(0)
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 肖乙丁 年级 18 区队 4 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年 第 一  阅读全文
posted @ 2020-11-19 15:59 p201821440008 阅读(47) 评论(0) 推荐(0)
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 肖乙丁 年级 2018级 区队 4 指导教师 高见 信息技术与网络安全学院 2020年11月7日 实验任务总纲 2016—2017 学年  阅读全文
posted @ 2020-11-19 14:04 p201821440008 阅读(93) 评论(0) 推荐(0)
摘要: 学 号201821440008 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 肖乙丁 年级 2018 区队 网安四区 指导教师 高见 信息技术与网络安全学院 2017年7月7日 实 阅读全文
posted @ 2020-10-29 11:28 p201821440008 阅读(105) 评论(0) 推荐(0)
摘要: #include"stdio.h" float s[5][3]; float average(float a,float b,float c) { float k; k=(a+b+c)/3; return k; } void printave() { int i; float j; for(i=0;i<5;i++) { j=... 阅读全文
posted @ 2019-06-03 23:16 p201821440008 阅读(90) 评论(0) 推荐(0)
摘要: #include"stdio.h" int add(int a,int b) { int c; c=a+b; return c; } int minus(int a,int b) { int c; c=a-b; return c; } int multip(int a,int b) { int c; c=a*b; retur... 阅读全文
posted @ 2019-06-03 22:56 p201821440008 阅读(88) 评论(0) 推荐(0)
摘要: #include "stdio.h" int main() { int a[10],m,n,p; printf("请输入10个整数:\n"); for(m=0;ma[n+1]) { p=a[n+1]; a[n+1]=a[n]; a[n]=p; } for(m=0;m<=9;m++) print... 阅读全文
posted @ 2019-05-20 21:07 p201821440008 阅读(98) 评论(0) 推荐(0)
摘要: do-while循环 whlie循环 水仙花数 阅读全文
posted @ 2019-05-06 21:29 p201821440008 阅读(95) 评论(0) 推荐(0)
摘要: #include"stdio.h" main() { double a,rate,tax,profit; scanf("%lf",&a); if(a<500) rate=0.00; else if(a<1000) rate=0.05; else if(a<2000) rate=0.08; else 阅读全文
posted @ 2019-04-23 21:28 p201821440008 阅读(92) 评论(0) 推荐(0)
摘要: #include "stdio.h" int main() { int i; printf("input the year.\n"); scanf("%d",&i); { if((i%4==0&&i%100!=0)||i%400==0) printf("year:%d,month:2,day:29\ 阅读全文
posted @ 2019-04-23 21:27 p201821440008 阅读(115) 评论(0) 推荐(0)