摘要:
中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 孙炳基 年级 2018级 区队 3 指导教师 高见 信息技术与网络安全学院 2018年12月7日 实验任务总纲 2016—2017 学年 第 阅读全文
摘要:
中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 孙炳基 年级 2018级 区队 3 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年 第 阅读全文
摘要:
中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 孙炳基 年级 2018级 区队 3 指导教师 高见 信息技术与网络安全学院 2020年11月7日 实验任务总纲 2016—2017 学年 阅读全文
摘要:
学 号:201821430007 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 孙炳基 年级 2018级 区队 3区 指导教师 高见 信息技术与网络安全学院 2017年7月7日 实 阅读全文
摘要:
#include<stdio.h>float average3(float a,float b,float c){float d,f;d=a+b+c;f=d/3;return f;}float average5(float a,float b,float c,float d,float e){flo 阅读全文
摘要:
#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*y;retur 阅读全文
摘要:
#include<stdio.h> int main() { int a[10]; int i,j,t; printf("请输入10个数\n"); for(i=0;i<=9;i++) scanf("%d",&a[i]); for(j=0;j<9;j++) for(i=0;i<9-j;i++) if( 阅读全文
摘要:
#include<stdio.h> int main(){ int a,b,c,j; j=0; for(a=1;a<=5;a++) { for(b=1;b<=5;b++) { for(c=1;c<=5;c++) { if(a!=b&&b!=c&&a!=c) {j++; printf("%d%d%d\ 阅读全文
摘要:
#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); putc 阅读全文