摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 邵春龙 年级 18 区队 三区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年 第 一 阅读全文
posted @ 2020-11-30 10:33 201821430014 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 邵春龙 年级 18 区队 3区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年 第 一 阅读全文
posted @ 2020-11-16 10:12 201821430014 阅读(45) 评论(0) 推荐(0) 编辑
摘要: Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 邵春龙 年级 18 区队 3区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年 第 一 学期 一、实验 阅读全文
posted @ 2020-11-02 09:07 201821430014 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 信息技术与网络安全学院 2017年7月7日 实验任务总纲 2017—2018 学年 第 一 学期 一、实验目的 1.加深并消化本课程授课内容,复习所学过的互联网搜索技巧、方法和技术; 2.了解并熟悉常用搜索引擎、扫描工具、社交网站等互联网资源,对给定的任务进行搜索、关联、分析; 3.达到巩固课程知识 阅读全文
posted @ 2020-10-19 09:36 201821430014 阅读(99) 评论(0) 推荐(0) 编辑
摘要: # include <stdio.h># include <stdlib.h># include <malloc.h># define stack_init_size 100# define stackincrement 10# define ok 1# define error 0struct s 阅读全文
posted @ 2019-11-04 10:14 201821430014 阅读(118) 评论(0) 推荐(0) 编辑
摘要: # include <stdio.h># include <stdlib.h>struct complex{ float real; float imaginary; };void initcomplex(complex &c,float r1,float r2){ c.real=r1; c.ima 阅读全文
posted @ 2019-11-02 09:51 201821430014 阅读(329) 评论(0) 推荐(0) 编辑
摘要: int average (int x,int y,int z) {int aver; aver=(x+y+z)/3; return aver; } int average5 (int a,int b,int c,int d,int e) {int aver; aver=(a+b+c+d+e)/5; 阅读全文
posted @ 2019-06-06 15:01 201821430014 阅读(150) 评论(0) 推荐(0) 编辑
摘要: int fac(int n) {int f; if(n==0||n==1) f=1; else f=n*fac(n-1); return (f); } # include <stdio.h> int main() {int n,y; scanf("%d",&n); y=fac(n); printf( 阅读全文
posted @ 2019-06-06 14:22 201821430014 阅读(127) 评论(0) 推荐(0) 编辑
摘要: int max2(int x,int y) {if(x>y) return x; else if(x<y) return y; } int max4(int a,int b,int c,int d) {int max; max=max2(a,b); max=max2(max,c); max=max2 阅读全文
posted @ 2019-06-06 14:14 201821430014 阅读(168) 评论(0) 推荐(0) 编辑
摘要: int prime(int n) {int i; for(i=2;i<n;i++) {if (n%i==0) return 0; } return 1; } # include <stdio.h> int main() {int pri,n; scanf("%d",&n); pri=prime(n) 阅读全文
posted @ 2019-06-06 14:05 201821430014 阅读(169) 评论(0) 推荐(0) 编辑