摘要: 实验报告 四 学 号201821440015 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 白仁杰 年级 2018 区队 18网安四区 指导教师 高见 信息技术与网络安全学院 2020年 阅读全文
posted @ 2020-12-10 12:03 你家大白 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 恢复内容开始 实验报告 三 学 号 201821440015 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 白仁杰 年级 2018 区队 18网安四区 指导教师 高见 信息技术与网络安全 阅读全文
posted @ 2020-11-19 21:36 你家大白 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 网络对抗 实验二 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 白仁杰 年级 2018 区队 四区队 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年 第 一 学期 一、实验目的 1.加深并消化本课程授课内容,复习所学过的互联网搜索技巧 阅读全文
posted @ 2020-11-11 20:56 你家大白 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 恢复内容开始 学 号:201821440015 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 白仁杰 年级 2018 区队 4 指导教师 高见 信息技术与网络安全学院 2017年7 阅读全文
posted @ 2020-10-26 09:48 你家大白 阅读(115) 评论(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; re 阅读全文
posted @ 2019-06-25 23:41 你家大白 阅读(156) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> double average(float a,float b,float c) {float d; d=(a+b+c)/3;return d;} double average2(float a, float b,float c,float d,float e) 阅读全文
posted @ 2019-06-17 16:17 你家大白 阅读(117) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>void swap(int *a,int *b){int temp;temp=*a;*a=*b;*b=temp;}int main(){ int a[10]; int i,q,w,j,e,r,t,n,y; for(i=0;i<10;i++){scanf("%d", 阅读全文
posted @ 2019-05-20 14:54 你家大白 阅读(117) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>int main(){int a,b,c,d,n;int s,i;for(s=22,i=42;i<=1002;i+=20){s=s+i;}printf("%d\n",s);return 0;} #include <stdio.h>int main(){int a, 阅读全文
posted @ 2019-05-06 14:54 你家大白 阅读(114) 评论(0) 推荐(0) 编辑
摘要: #include int main() { int year; int a=28; int b=29; scanf("%d",&year); if((year%100!=0&&year%4==0)||(year%400==0)) { printf("year:%d,month:2,day:%d",year,b);} else{printf... 阅读全文
posted @ 2019-04-22 15:23 你家大白 阅读(134) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>int main(){int a,b,sum;a=123;b=456;sum=a+b;printf("sum is %d\n",sum); return 0;} #include <stdio.h>int main(){ char c1,c2; c1=97; c2 阅读全文
posted @ 2019-04-15 11:26 你家大白 阅读(123) 评论(0) 推荐(0) 编辑