我尝试过调试器和 Catch and throw,尽管我承认我对这两个都不满意。但我无法在我的程序中找到浮点异常的原因。奇怪的是它对于数字 <= 35 运行完美。除此之外,它引发了异常。问题出在哪里?
int fibo(int n)
{ if(n==0 || n==1)
return 1;
int p=1;
while(n>1)
p*=(n--);
return p;
}
int main()
{ int T;
int N, M;
cin>>T;
for(int i=0; i<T; i++)
{
cin>>N>>M;
int cnt=1;
int ones=N, twos=0;
if(ones==1 && M==1)
{ cout<<"CORRECT"<<endl;
continue;
}
else if(ones==1 && M!=1)
{ cout<<"INCORRECT"<<endl;
continue;
}
while(ones>=2)
{
ones-=2;
twos++;
cnt+= fibo(ones+twos)/( fibo(ones) * fibo(twos) );
}
cout<<cnt<<endl;
int tmp=0;
while(cnt>0)
{ if(cnt%2 == 1)
tmp++;
cnt/=2;
}
if( tmp==M )
cout<<"CORRECT"<<endl;
else
cout<<"INCORRECT"<<endl;
}
system("pause");
return 0;
}
非常感谢。