摘要: 学 号 201821440011 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 刘源浩 年级 2018级 区队 网安四区 指导教师 高见 信息技术与网络安全学院 2017年7月7日 阅读全文
posted @ 2020-10-25 11:08 p201821440011 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-06-03 15:28 p201821440011 阅读(152) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> int add(int a,int b) { int c; c=a+b; return c; } int minus(int a,int b) { int c; c=a-b; return c; } int multip(int a,int b) { int c; 阅读全文
posted @ 2019-06-03 14:39 p201821440011 阅读(126) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> void swap(int *a,int *b) { int t; t=*a; *a=*b; *b=t; } int main() { int t,a[10]; for(t=0;t<10;t++) { scanf("%d",&a[t]); } int i,j; f 阅读全文
posted @ 2019-05-20 15:15 p201821440011 阅读(240) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> int main() { long int a,s; s=0; for(a=22;a<=1002;a+=20) { s+=a; } printf("s=%d",s); return 0; } #include<stdio.h> int main() { long 阅读全文
posted @ 2019-05-06 15:16 p201821440011 阅读(133) 评论(0) 推荐(0) 编辑
摘要: #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); putchar(c); putc 阅读全文
posted @ 2019-04-22 15:34 p201821440011 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 程序一 #include<stdio.h> int main() { int a,b,sum; a=123; b=456; sum=a+b; printf("sum is %d\n",sum); return 0; } 程序二 #include<stdio.h> int main() { char 阅读全文
posted @ 2019-04-08 15:33 p201821440011 阅读(196) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>int main() { int year; printf("请输入一个年份"); scanf("%d", &year); if((year%100!=0&year%4==0)||year%400==0) { printf("YES"); } else { pri 阅读全文
posted @ 2019-03-11 22:06 p201821440011 阅读(381) 评论(0) 推荐(0) 编辑