上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 30 下一页
摘要: 1 #include 2 char s[45]; 3 4 int lenth(char s[]) 5 { 6 int i=0; 7 while(s[i]) 8 ++i; 9 return i; 10 } 11 int main() 12 { 13 int n; 14 scanf("%d",&n); 15 getc... 阅读全文
posted @ 2016-12-31 20:06 Posase 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 int main() 4 { 5 int n; 6 double x1,x2,y1,y2; 7 scanf("%d",&n); 8 while(n--) 9 { 10 scanf("%lf%lf%lf%lf",&x1,&y1,&x2,&y2); 11 prin... 阅读全文
posted @ 2016-12-30 12:20 Posase 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 int ans; 3 int cus(int x) 4 { 5 if(x) 6 { 7 if(x&1) 8 ++ans; 9 cus(x>>1); 10 } 11 else 12 return ans; 13 } 14 int main() 15 {... 阅读全文
posted @ 2016-12-29 21:51 Posase 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 int main() 3 { 4 int n,x; 5 scanf("%d",&n); 6 while(n--) 7 { 8 scanf("%d",&x); 9 if(x<60) 10 puts("E"); 11 else if(x<70) 12 ... 阅读全文
posted @ 2016-12-29 21:34 Posase 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 int main() 3 { 4 int n; 5 double m,x,y,z; 6 scanf("%d",&n); 7 while(n--) 8 { 9 scanf("%lf%lf%lf%lf",&m,&x,&y,&z); 10 printf("%.2lf\n",(m*x)/(... 阅读全文
posted @ 2016-12-29 21:33 Posase 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 另可用字符数组处理。 阅读全文
posted @ 2016-12-28 17:41 Posase 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 int ci(int x,int y) 3 { 4 if(x<y) 5 return 0; 6 else 7 return x/y+ci(x/y+x%y,y); 8 } 9 10 int main() 11 { 12 int n,m,k; 13 scanf("%d",&n); 14 ... 阅读全文
posted @ 2016-12-28 17:32 Posase 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 int main() 3 { 4 int n,k,i,j; 5 scanf("%d%d",&n,&k); 6 int flag,temp; 7 for(i=1; i<=n; ++i) 8 { 9 for(j=1,temp=0; j<=k; ++j) 10 if(!(i%j)... 阅读全文
posted @ 2016-12-28 12:06 Posase 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 int main() 3 { 4 int n,y,m,d; 5 scanf("%d",&n); 6 while(n--) 7 { 8 scanf("%d%d%d",&y,&m,&d); 9 switch(m) 10 { 11 case 2:d+=31;bre... 阅读全文
posted @ 2016-12-28 11:51 Posase 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 main() 3 { 4 int n,m,a,d,e,f,g,h,i; 5 while(1) 6 { 7 a=0; 8 scanf("%d%d",&m,&n); 9 if(m==0&&n==0) {break;} 10 d=m%10; 11 e=n%... 阅读全文
posted @ 2016-12-28 11:39 Posase 阅读(126) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 30 下一页