0

我尝试过调试器和 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;
}

非常感谢。

4

1 回答 1

1

“浮点异常”不是 C++ 异常。try并且catch不会帮助你。这是一个不幸的术语,但它来自操作系统,更像是“崩溃”。

更令人费解的是,当您尝试执行整数除以零时,您可以在某些平台上看到它。我没有解开你的代码,但是添加了大量的调试输出并跟踪你的变量的值,并找到你被零除的地方,因为,你在某处做。:)

我唯一能看到候选人的地方是:

cnt+= fibo(ones+twos)/( fibo(ones) * fibo(twos) )
//                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^
于 2013-02-02T06:55:02.733 回答