上一页 1 2 3 4 5 6 7 ··· 13 下一页
  2015年4月22日
摘要: 1 #include 2 #include 3 using namespace std; 4 int main() 5 { 6 int num=0,i=0; 7 while(scanf("%d",&num)!=EOF) 8 { 9 int arr[110];... 阅读全文
posted @ 2015-04-22 19:11 Evence 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 bool judge(int a) 5 { 6 int sqr=sqrt(a*1.0); 7 for(int i=2 ; i<=sqr+1 ; ++i) 8 { 9 int tmp=i*i... 阅读全文
posted @ 2015-04-22 17:38 Evence 阅读(213) 评论(0) 推荐(0) 编辑
  2015年4月18日
摘要: DevC++编程工具 v5.6.1 安装版http://www.cr173.com/soft/32009.html 阅读全文
posted @ 2015-04-18 09:45 Evence 阅读(100) 评论(0) 推荐(0) 编辑
  2015年4月17日
摘要: http://www.xpgod.com/soft/20115.html 阅读全文
posted @ 2015-04-17 17:47 Evence 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 各种操作系统镜像下载地址http://www.msdn.hk/win10 下载链接:http://www.msdn.hk/html/2015/1496.htmlWindows 10 Technical Preview 9926 (x64) - DVD (Chinese-Simplified)发布日期... 阅读全文
posted @ 2015-04-17 10:44 Evence 阅读(231) 评论(0) 推荐(0) 编辑
  2015年4月16日
摘要: 将vic放入home,改名为“.vimrc”,在终端编辑的时候就会有行数修改名字和邮箱:在终端输入 vim .vimrc,编辑即可安装C++编辑器:在root下输入yum install gcc-c++即可下载安装 阅读全文
posted @ 2015-04-16 17:51 Evence 阅读(110) 评论(0) 推荐(0) 编辑
  2015年3月11日
摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 using namespace std; 8 int n; //n本书 9 //标题、作者、关键字、出版社、出版年份与ID的映射10 map> mp... 阅读全文
posted @ 2015-03-11 23:15 Evence 阅读(231) 评论(0) 推荐(0) 编辑
摘要: #include#includechar str[30]; //输入的数字int tmp[30]; //*2后逆序的数字int cntstr[10]; //输入数字0-9的个数int tmpI=0,jin=0; //... 阅读全文
posted @ 2015-03-11 16:21 Evence 阅读(155) 评论(0) 推荐(0) 编辑
摘要: #include#includeusing namespace std;typedef long long ll; //【skill】重命名struct num{ ll zi,mu; //分子分母};ll gcd(ll a,ll b) //求最大公约数{ return ... 阅读全文
posted @ 2015-03-11 15:07 Evence 阅读(217) 评论(0) 推荐(0) 编辑
摘要: #include#include#includeusing namespace std;const int MAX=1010;int n,m,k; //城市数,高速公路数,查询次数int DELETE; //要删除的点vector ADJ[MAX]; //邻... 阅读全文
posted @ 2015-03-11 09:44 Evence 阅读(107) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 13 下一页