摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 李佩珊 年级 2018 区队 三 指导教师 高见 信息技术与网络安全学院 2020年11月30日 实验任务总纲 2020—2021 学年 第 阅读全文
posted @ 2020-11-30 10:26 p201821430042 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 李佩珊 年级 2018级 区队 三区 指导教师 高见 信息技术与网络安全学院 2020年11月16日 实验任务总纲 2020—2021学年  阅读全文
posted @ 2020-11-16 11:01 p201821430042 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 李佩珊 年级 2018级 区队 三区 指导教师 高见 信息技术与网络安全学院 2020年11月2日 实验任务总纲 2020—2021 学年 阅读全文
posted @ 2020-11-02 08:22 p201821430042 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 李佩珊 年级 2018级 区队 三区 指导教师 高见 信息技术与网络安全学院 2020年10月19日 实验任务总纲 2020—2021 阅读全文
posted @ 2020-10-19 13:12 p201821430042 阅读(106) 评论(0) 推荐(0) 编辑
摘要: #include "stdio.h"#include "math.h"int aver1(int a,int b,int c){ int average1; average1=(a+b+c)/3; return average1;}int aver2(int a,int b,int c,int d, 阅读全文
posted @ 2019-06-06 15:17 p201821430042 阅读(110) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int add(int x, int y) { int a; a=x+y; return a; } int minus(int x,int y) { int b; b=x-y; return b; } int multip(int x,int y) { int 阅读全文
posted @ 2019-06-06 14:32 p201821430042 阅读(104) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> int main() { int a[3][3],i,j,n; for(i=0;i<3;i++) { for(j=0;j<3;j++) { scanf("%d",&a[i][j]); } } n=0; for(i=0;i<3;i++) { n=a[i][i]+n; 阅读全文
posted @ 2019-05-23 15:33 p201821430042 阅读(123) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>void swap(int* a,int* b) { int temp; temp=*a; *a=*b; *b=temp; } int main() { int a[10],i,j; for(i=0;i<10;i++) { scanf("%d",&a[i]); } 阅读全文
posted @ 2019-05-23 14:41 p201821430042 阅读(80) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>int main(){int a,b,c,i,j,k;c=0;a=100;for(a;a<=999;a++){ i=a/100; j=(a/10)%10; k=a%10; b=i*i*i+j*j*j+k*k*k; if(a==b) { printf("%d\n",a 阅读全文
posted @ 2019-05-09 15:14 p201821430042 阅读(98) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>int main(){ int a=22; long s=0; for(a=22;a<=1002;a=a+20) { s=s+a; } printf("%d\n",s); return 0;} #include<stdio.h>int main(){int a=22 阅读全文
posted @ 2019-05-09 14:48 p201821430042 阅读(132) 评论(0) 推荐(0) 编辑