上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页
摘要: #include #include int main(){ int n,count=0; scanf("%d",&n); while(n--) { int tmp; scanf("%d",&tmp); printf("%d ",++c... 阅读全文
posted @ 2015-06-20 11:04 Gabyler 阅读(243) 评论(0) 推荐(0) 编辑
摘要: #include #include #includechar str[100000000];int ar[100000000];int main(){ int n,len,i; scanf("%d",&n); while(n--) { scanf("%s",st... 阅读全文
posted @ 2015-06-19 18:16 Gabyler 阅读(142) 评论(0) 推荐(0) 编辑
摘要: #include #include int main(){ char str[100]; while(gets(str) != NULL) { printf("%s\n",str); } return 0;}View Code 阅读全文
posted @ 2015-06-19 16:02 Gabyler 阅读(89) 评论(0) 推荐(0) 编辑
摘要: #include #include int main(){ int n,r,e,a; scanf("%d",&n); while(n--) { scanf("%d %d %d",&r,&e,&a); if((e-r) > a) ... 阅读全文
posted @ 2015-06-19 14:08 Gabyler 阅读(119) 评论(0) 推荐(0) 编辑
摘要: #include #include int tab[1000001];//以后都用宏定义 MAXint main()//如要将包括1000000在内的打表,数组就开大一个{ int a,d,n,i,j; tab[0]=0;tab[1]=0; for(i=2;i<1000001;i+... 阅读全文
posted @ 2015-06-19 13:20 Gabyler 阅读(175) 评论(2) 推荐(0) 编辑
摘要: #include #include int main(){ int n,tim=0; long long ans,a,b; scanf("%d",&n); while(n--) { scanf("%lld %lld",&a,&b); ans ... 阅读全文
posted @ 2015-06-19 11:58 Gabyler 阅读(136) 评论(0) 推荐(0) 编辑
摘要: #include #include #includeint isPri(int a, int b){ int i; for(i=2; i <= sqrt(a); i++) { if(a%i == 0) return 0; } for(... 阅读全文
posted @ 2015-06-18 16:51 Gabyler 阅读(156) 评论(1) 推荐(0) 编辑
摘要: #include #include //法一int main(){ double temar[10000]; int i=0,tmp; while(1) { scanf("%lf",&temar[i]); if(temar[i] == 999) ... 阅读全文
posted @ 2015-06-18 11:48 Gabyler 阅读(120) 评论(0) 推荐(0) 编辑
摘要: #include #include #includeint main(){ int n,len; char str[10]; scanf("%d",&n); while(n--) { int tmp; scanf("%s",str); ... 阅读全文
posted @ 2015-06-18 11:02 Gabyler 阅读(101) 评论(0) 推荐(0) 编辑
摘要: #include#includeint main(){ int n,i; while(scanf("%d",&n) != EOF && n) { int max=0,maxdown,day,nigt; for(i=0; i max) ... 阅读全文
posted @ 2015-06-18 10:00 Gabyler 阅读(161) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页