摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 李天贤 年级 2018 区队 三区队 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2020—2021学年 第 阅读全文
posted @ 2020-11-30 10:42 李天贤 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 李天贤 年级 2018 区队 网安三区 指导教师 高见 信息技术与网络安全学院 2020年11月16日 实验任务总纲 2020—2021 学 阅读全文
posted @ 2020-11-16 10:32 李天贤 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 李天贤 年级 2018 区队 网安三区 指导教师 高见 信息技术与网络安全学院 2020年11月2日 实验任务总纲 2020—2021 学 阅读全文
posted @ 2020-11-02 10:33 李天贤 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 李天贤 年级 18级 区队 网安三区 指导教师 高见 2020年10月19日 实验任务总纲 2020—2021 学年 第 一 学期 一 阅读全文
posted @ 2020-10-19 11:05 李天贤 阅读(39) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> #include <windows.h>#include <stdlib.h> int average(int a,int b,int c) { int av; av=(a+b+c)/3; return av; } int 阅读全文
posted @ 2019-06-20 15:48 李天贤 阅读(99) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>int fac(int n);void main(){ int n; scanf("%d",&n); printf("%d\n",fac(n));}int fac(int n){ if(n==1||n==0) { return 1; } else if(n>0)  阅读全文
posted @ 2019-06-06 15:00 李天贤 阅读(104) 评论(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:34 李天贤 阅读(103) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int prime(int x); void main() { int x; scanf("%d",&x); if(prime(x)==1) printf("YES\n"); else printf("NO\n"); } int prime(int x) { i 阅读全文
posted @ 2019-06-06 14:15 李天贤 阅读(93) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>int add(int a,int b){return a+b;}int minus(int a,int b){return a-b;}int multip(int a,int b){return a*b;}int quotient(int a,int b) {  阅读全文
posted @ 2019-06-06 14:01 李天贤 阅读(87) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>int main(){ int a[99]; int i,j; for(i=0;i<99;i++) a[i]=i+2; for(j=2;j<=10;j++) for(i=0;i<99;i++) if((a[i]%j==0)&&(a[i]>j)) a[i]=0; fo 阅读全文
posted @ 2019-05-23 15:47 李天贤 阅读(107) 评论(0) 推荐(0) 编辑