摘要: 学 号 201821430008 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 岳靖淞 年级 2018 区队 七区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务 阅读全文
posted @ 2020-12-03 09:58 201821430008 阅读(45) 评论(0) 推荐(0)
摘要: 学 号 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 年级 区队 指导教师 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年 第 一 学期 一、实验目 阅读全文
posted @ 2020-11-20 17:01 201821430008 阅读(74) 评论(0) 推荐(0)
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 岳靖淞 年级 2018 区队 网安七区 指导教师 高见 信息技术与网络安全学院 2020年11月7日 实验任务总纲 2020—2021 学 阅读全文
posted @ 2020-11-20 15:30 201821430008 阅读(226) 评论(0) 推荐(0)
摘要: 学 号:201821430008 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 岳靖淞 年级 2018 区队 网络安全与执法7区 指导教师 高见 信息技术与网络安全学院 2020年 阅读全文
posted @ 2020-10-30 15:02 201821430008 阅读(63) 评论(0) 推荐(0)
摘要: #include "stdio.h"#include "stdlib.h"typedef struct complex{ int real; int imagine; complex *next;}complex,*node;int main(){ int i,j=0; printf("若想输入一个 阅读全文
posted @ 2019-10-29 10:59 201821430008 阅读(194) 评论(0) 推荐(0)
摘要: #include "stdio.h"#include "string.h"#include "windows.h"#include "stdlib.h"int fac(int n);void main(){ int a[5][3],b[5],c[3],i,j,s; system("color ED" 阅读全文
posted @ 2019-06-06 15:40 201821430008 阅读(127) 评论(0) 推荐(0)
摘要: #include "stdio.h"int max(int x,int y);void main(){ int a[4],i; for(i=0;i<4;i++) { scanf("%d",&a[i]); } i=0; printf("%d\n",max(max(a[i],a[i+1]),max(a[ 阅读全文
posted @ 2019-06-06 14:36 201821430008 阅读(129) 评论(0) 推荐(0)
摘要: #include"stdio.h" void main() { int i,j; int a[101]={0}; for(i=2;i<11;i++) { for(j=2;j*i<=100;j++) { a[i*j]=1; } } for(i=2;i<100;i++) { if(a[i]==0) pr 阅读全文
posted @ 2019-05-23 16:08 201821430008 阅读(132) 评论(0) 推荐(0)
摘要: #include"stdio.h" void forx() { int i; long s=0; for(i=1;i<=50;i++) { s+=(20*i+2); } printf("%d\n",s); } void whilex() { int i=1; long s=0; do { s+=(2 阅读全文
posted @ 2019-04-25 15:19 201821430008 阅读(172) 评论(0) 推荐(0)
摘要: #include"stdio.h" void rr(double a) { if(a<500) { printf("a=%lf\trate=0.00\ttax=%lf\tprofit=%lf\n",a,0,a); } if(a>=500&&a<1000) { printf("a=%lf\trate= 阅读全文
posted @ 2019-04-11 16:09 201821430008 阅读(125) 评论(0) 推荐(0)