HDU 1017 A Mathematical Curiosity (输出格式,穷举)

Posted Roni

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 1017 A Mathematical Curiosity (输出格式,穷举)相关的知识,希望对你有一定的参考价值。

#include<stdio.h>
int main()
{
    int N;
    int n,m;
    int a,b;
    int cas;
    scanf("%d",&N);
    while(N--)
    {
        cas=1;//必须在这儿初始化cas,坑
        while(scanf("%d%d",&n,&m),n||m)
        {
            int count=0;
            for(a = 1; a < n; a++)//穷举法
            {
            	for(b = a + 1; b < n; b++)
            	{
                	if((a*a + b*b + m) % (a * b) == 0)
                		count++;
            	}
        	}
    		printf("Case %d: %d\n",cas++,count);
     	}
        if(N)
        	printf("\n");//注意输出换行的位置
    }
    return 0;
}

  

以上是关于HDU 1017 A Mathematical Curiosity (输出格式,穷举)的主要内容,如果未能解决你的问题,请参考以下文章

HDU 1017 A Mathematical Curiosity (数学)

HDU 1017 A Mathematical Curiosity (枚举水题)

HDU 1017 A Mathematical Curiosity

Hdu oj 1017 A Mathematical Curiosity

HDU 1017 A Mathematical Curiosity (输出格式,穷举)

HDU 1017 A Mathematical Curiosity看懂题意+穷举法