上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 30 下一页
摘要: 1 #include 2 int main() 3 { 4 int a,b; 5 while(~scanf("%d%d",&a,&b)) 6 { 7 if(a*b) 8 { 9 printf("Signs are "); 10 if((a>>31)^(b>>31)) 11 ... 阅读全文
posted @ 2017-01-30 13:22 Posase 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 int main() 4 { 5 int n,len,r,d; 6 scanf("%d",&n); 7 while(n--) 8 { 9 scanf("%d%d%d",&len,&d,&r); 10 if(4*r*r-d*d<1) 11 put... 阅读全文
posted @ 2017-01-30 13:21 Posase 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 char s[10]; 3 int lenth(char s[]) 4 { 5 int i=0; 6 while(s[i]) 7 ++i; 8 return i; 9 } 10 int main() 11 { 12 int n; 13 scanf("%d",&n); 14 getchar(... 阅读全文
posted @ 2017-01-23 20:06 Posase 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 int a[200]; 4 int main() 5 { 6 int n,m; 7 scanf("%d",&n); 8 while(n--) 9 { 10 int day,sr,fn; 11 scanf("%d",&m); 12 memset(a,0,... 阅读全文
posted @ 2017-01-23 18:38 Posase 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #define PI 3.1415926 3 int main() 4 { 5 int n; 6 scanf("%d",&n); 7 while(n--) 8 { 9 double m; 10 scanf("%lf",&m); 11 printf("%.2lf\n",PI*... 阅读全文
posted @ 2017-01-21 12:44 Posase 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 int a[30]; 3 int main() 4 { 5 int n,m; 6 a[0]=4; 7 for(int i=1; i<30; ++i) 8 a[i]=2*(a[i-1]+1); 9 scanf("%d",&n); 10 while(n--) 11 { 12 s... 阅读全文
posted @ 2017-01-21 12:26 Posase 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 char s[105]; 3 int main() 4 { 5 int n; 6 scanf("%d",&n); 7 getchar(); 8 while(n--) 9 { 10 gets(s); 11 for(int i=0; s[i]; ++i) 12 ... 阅读全文
posted @ 2017-01-21 12:17 Posase 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 int main() 3 { 4 int n; 5 while(~scanf("%d",&n) && n) 6 { 7 int ans=0; 8 while(n--) 9 { 10 int a,b; 11 scanf("%d%d",&... 阅读全文
posted @ 2017-01-21 11:22 Posase 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 int main() 3 { 4 int n,k,i,m; 5 while(~scanf("%d%d",&n,&k) && n+k) 6 { 7 m=n/2+1; 8 for(i=1; i<m; ++i) 9 if(i*(n-i)==k) 10 ... 阅读全文
posted @ 2017-01-21 11:17 Posase 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 char s[205]; 3 int main() 4 { 5 int n,temp,i; 6 scanf("%d",&n); 7 while(n--) 8 { 9 scanf("%s",s); 10 for(i=temp=0; s[i]; ++i) 11 if(s... 阅读全文
posted @ 2017-01-14 15:31 Posase 阅读(123) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 30 下一页