简单题。
感觉主要考察的又是格式问题。(改了2遍。。。。)
#include<iostream>
using namespace std;
int main()
{
int t,n,m,a,b,test,count;
cin>>t;
while(t--)
{
test=1;
while(cin>>n>>m&&n!=0)
{
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++;
}
cout<<"Case "<<test<<": "<<count<<endl;
test++;
}
if(t!=0)cout<<endl;//这行代码很关键
}
return 0;
}