码迷,mamicode.com
首页 > 其他好文 > 详细

hdu_1017(水水水,坑格式)

时间:2017-04-04 09:27:05      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:++   class   char   include   std   ble   getch   case   cas   

 1 #include<cstdio>
 2 #include<cmath>
 3 using namespace std;
 4 int main()
 5 {
 6     int T;
 7     scanf("%d",&T);
 8     while(T--)
 9     {
10         getchar();
11         int n,m,sum;
12         double tm;
13         int cnt = 0;
14         while(~scanf("%d%d",&n,&m)){
15             if(n==0&&m==0) break;
16             sum = 0;
17             for(int a = 1; a < n; a++){
18                 for(int b = a+1; b < n; b++){
19                     tm = ((double)a*a+(double)b*b +(double)m)/(double)(a*b);
20                     if((tm -(int)tm)==0) sum++;
21                 }
22             }
23             printf("Case %d: %d\n",++cnt,sum);
24         }
25         if(T!=0)puts("");//最后一个输出块后没有空行
26     }
27     return 0;
28 }

 

hdu_1017(水水水,坑格式)

标签:++   class   char   include   std   ble   getch   case   cas   

原文地址:http://www.cnblogs.com/shanyr/p/6664275.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!