2020年12月2日
摘要: 学 号:201821430021 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 谷京霖 年级 2018 区队 网安三区 指导教师 高见 信息技术与网络安全学院 实验任务总纲 2020—2 阅读全文
posted @ 2020-12-02 16:00 今夏不将就 阅读(51) 评论(0) 推荐(0) 编辑
  2020年12月1日
摘要: 学号:201821430021 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 谷京霖 年级 2018 区队 网安三区 指导教师 高见 信息技术与网络安全学院 实验任务总纲 一、实验目的 阅读全文
posted @ 2020-12-01 23:16 今夏不将就 阅读(517) 评论(0) 推荐(0) 编辑
摘要: 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 谷京霖 年级 2018 区队 网安三区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年 第 一 学期 一、实验目的 1.加深并消化本课程授课内容,复习所学过的互联网搜索技巧、方法和技术; 阅读全文
posted @ 2020-12-01 23:11 今夏不将就 阅读(156) 评论(0) 推荐(0) 编辑
  2020年10月19日
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 谷京霖 年级 2018 区队 网安三区 指导教师 高见 信息技术与网络安全学院 2020年10月19日 实验任务总纲 2020—202 阅读全文
posted @ 2020-10-19 15:28 今夏不将就 阅读(150) 评论(0) 推荐(0) 编辑
  2019年6月6日
摘要: #include "stdafx.h" #include "stdio.h" int average1(int x,int y,int z) { int t; t=(x+y+z)/3; return t; } int average2(int x,int y,int z,int a,int b) { 阅读全文
posted @ 2019-06-06 16:06 今夏不将就 阅读(191) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h" #include "stdio.h" int add(int x,int y) { int a; a=x+y; return a; } int minus(int x,int y) { int mi; mi=x-y; return mi; } int mult 阅读全文
posted @ 2019-06-06 15:12 今夏不将就 阅读(240) 评论(0) 推荐(0) 编辑
  2019年5月23日
摘要: #include "stdafx.h" #include "stdio.h" int main(int argc, char* argv[]) { int a[10]; int i,j,t; printf("input 10 numbers :\n"); for(i=0;i<10;i++) { sc 阅读全文
posted @ 2019-05-23 15:48 今夏不将就 阅读(153) 评论(0) 推荐(0) 编辑
  2019年5月9日
摘要: #include "stdafx.h" #include "stdio.h" int main(int argc, char* argv[]) { int i,s; i = 22; s = 0; while (i<=1002) { s = s+i; i = i+20; } printf("s=%d\ 阅读全文
posted @ 2019-05-09 15:16 今夏不将就 阅读(165) 评论(0) 推荐(0) 编辑
  2019年4月25日
摘要: #include "stdafx.h" #include "stdio.h" int main(int argc, char* argv[]) { char a,b,c,d,e; a=getchar(); b=getchar(); c=getchar(); d=getchar(); e=getcha 阅读全文
posted @ 2019-04-25 16:30 今夏不将就 阅读(264) 评论(0) 推荐(0) 编辑
  2019年4月11日
摘要: #include "stdafx.h"#include<stdio.h>int main(int argc, char* argv[]){ int a,b,sum; a=123; b=456; sum=a+b; printf("sum is %d\n",sum); return 0; } #incl 阅读全文
posted @ 2019-04-11 15:11 今夏不将就 阅读(242) 评论(0) 推荐(0) 编辑