上一页 1 ··· 6 7 8 9 10 11 下一页
摘要: //判断是否是回文数 #include"pch.h"#include<iostream>using namespace std;bool systm(unsigned n){ unsigned i = n; unsigned m = 0; while (i>0) { m = m * 10 + i % 阅读全文
posted @ 2018-12-17 08:28 Maggieisxin 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 划红线的是执行语句,对已知的服务器的IP地址进行扫描、嗅探 阅读全文
posted @ 2018-12-12 18:36 Maggieisxin 阅读(727) 评论(0) 推荐(0) 编辑
摘要: #include #include #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define INIT_SIZE 10 //初始化表长 #define INCREMENT_SIZE 5 //分配增量 typedef int Status; typedef int Elemtype; /* ... 阅读全文
posted @ 2018-12-11 15:32 Maggieisxin 阅读(215) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>using namespace std;class complex{ public: complex (double r= 0, double i = 0) :re (r) , im(i) { } complex operator += (const compl 阅读全文
posted @ 2018-12-09 19:57 Maggieisxin 阅读(205) 评论(0) 推荐(0) 编辑
摘要: //c++学习//标准库非常重要//要规范自己的代码complex c1(2,1);complex c2;complex* pc = new complex(0,1);string s1("Hello");string s2("world");string* ps #include<iostream 阅读全文
posted @ 2018-12-09 19:51 Maggieisxin 阅读(1201) 评论(0) 推荐(0) 编辑
摘要: 最近小白再安装工具,首先是java的jdk,小白的电脑重装系统之后以前装的就没有了,然后记性不好的小白就开始百度了,百度上说是需要配置java_home和classpath路径然后再去编辑path路径小白尝试了没有用,于是就开始了小白一贯的装了再安之反复循环的路径,最后拜拜吧,然后小白就查看了另一台 阅读全文
posted @ 2018-12-08 16:26 Maggieisxin 阅读(1508) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2018-12-04 18:57 Maggieisxin 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-11-30 16:01 Maggieisxin 阅读(137) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2018-11-28 19:08 Maggieisxin 阅读(15) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2018-11-20 22:51 Maggieisxin 阅读(7) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 下一页