摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 杨雨薇 年级 2018级 区队 18网四 指导教师 高见 信息技术与网络安全学院 2019年10月28日 实验任务总纲 2019—20 阅读全文
posted @ 2020-10-22 15:21 哆啦** 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 int panduan(int x){ 3 int i,j; 4 if(x==2){ 5 i=1; 6 }else if(x==1){ 7 i=0; 8 }else{ 9 i=1; 10 for(j=2;j<x;j++){ 11 i... 阅读全文
posted @ 2019-05-27 15:42 哆啦** 阅读(227) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> double average (int a ,int b,int c){ double ave; ave=(a+b+c)/3; return ave; } double aver (int a ,int b,int c,int d,int e){ double a 阅读全文
posted @ 2019-05-20 16:17 哆啦** 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 5.1计算和差积商 5.2判断是否为质数 5.3寻找4个数中最大的数 5.4,递归法求阶乘 阅读全文
posted @ 2019-05-20 15:11 哆啦** 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 4.1数组排序 4.2 计算对角线之和 4.3 判断单词数 4.4素数的筛选 阅读全文
posted @ 2019-05-06 15:50 哆啦** 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 实验3.1 3.2水仙花数计数(代码见上,结果见下) 3.35个数字筛选排序 阅读全文
posted @ 2019-04-22 16:14 哆啦** 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 实验21 实验22 实验23 、 实验24 阅读全文
posted @ 2019-04-22 15:21 哆啦** 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 实验1 实验2.1 实验2.2 实验3.1 实验3.2 实验3.3 阅读全文
posted @ 2019-04-08 15:23 哆啦** 阅读(137) 评论(0) 推荐(0) 编辑
摘要: # include "stdio.h"# include "stdlib.h"# include <time.h>int main(int argc,char*argv[]) { int i; char c,gu; srand((unsigned)time(NULL)); c=6; gu=rand( 阅读全文
posted @ 2019-03-24 22:40 哆啦** 阅读(103) 评论(0) 推荐(0) 编辑
摘要: int main() { int year; scanf("%d", &year); if((year%100!=0&&year%4==0)||year%400==0){ printf("YES"); }else{printf("NO");} return 0;} #include <stdio.h 阅读全文
posted @ 2019-03-09 20:42 哆啦** 阅读(125) 评论(0) 推荐(0) 编辑