摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验报告 实验四 恶意代码技术 学生姓名 麦朗生 年级 2018级 区队 三区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—201 阅读全文
posted @ 2020-11-30 10:38 Lansen 阅读(53) 评论(0) 推荐(0)
摘要: 201821430023 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 麦朗生 年级 2018 区队 网安三区 指导教师 高见 信息技术与网络安全学院 2020年11月16日 实验任务总 阅读全文
posted @ 2020-11-16 10:22 Lansen 阅读(36) 评论(0) 推荐(0)
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 麦朗生 年级 2018 区队 18网安三区 指导教师 高见 信息技术与网络安全学院 2020年11月2日 实验任务总纲 2020—2021 阅读全文
posted @ 2020-11-02 09:39 Lansen 阅读(46) 评论(0) 推荐(0)
摘要: 恢复内容开始 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 麦朗生 年级 2018 区队 网安三区 指导教师 高见 信息技术与网络安全学院 2017年7月7日 实验任务总纲 201 阅读全文
posted @ 2020-10-19 10:02 Lansen 阅读(99) 评论(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:46 Lansen 阅读(76) 评论(0) 推荐(0)
摘要: #include "stdafx.h"#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 quo 阅读全文
posted @ 2019-06-06 14:54 Lansen 阅读(66) 评论(0) 推荐(0)
摘要: #include<stdio.h>int main(){ int a[10]; int i,j,t; printf("input 10 numbers:\n"); for(i=0;i<10;i++) scanf("%d",&a[i]); printf("\n"); for(j=0;j<9;j++) 阅读全文
posted @ 2019-05-23 15:23 Lansen 阅读(91) 评论(0) 推荐(0)
摘要: #include "stdafx.h"#include<stdio.h>int main(){ long i,s=0;for(i=22;i<=1002;i=i+20)s=s+i; printf("%d\n",s); return 0;} #include "stdafx.h"#include<std 阅读全文
posted @ 2019-05-09 15:30 Lansen 阅读(77) 评论(0) 推荐(0)
摘要: #include "stdafx.h"#include<stdio.h>int main(){ char a,b,c,d,e; a=getchar(); b=getchar(); c=getchar(); d=getchar(); e=getchar(); putchar(a); putchar(b 阅读全文
posted @ 2019-04-25 16:12 Lansen 阅读(146) 评论(0) 推荐(0)
摘要: #include <stdafx.h> #include <stdio.h> int main () { int a,b,sum; a=123; b=456; sum=a+b; printf("sum is %d\n",sum); return 0; } int main(){ char c1,c2 阅读全文
posted @ 2019-04-11 14:40 Lansen 阅读(84) 评论(0) 推荐(0)