获取错误:浮点异常

时间:2013-11-10 20:32:12

标签: c++ floating-point-exceptions

我是一名新手编码员,我目前正在研究Usaco训练问题,以提高我的技能。这是我的“贪婪礼物赠送者”的代码。当我提交代码时,我收到一条错误消息:执行错误:您的程序(`gift1')退出并带有信号         #8(浮点异常[通常由访问内存引起         超出范围])。该程序运行前的0.000 CPU秒         信号。它使用了3504 KB的内存。 “ 我一直在查看我的代码并尝试修复此错误一段时间了。有人可以帮忙吗?请不要生我的气,因为这是我第一次发帖,就像我说的那样,我对编程很陌生。

/*
ID: ashton.1
PROG: gift1
LANG: C++
*/

#include <iostream>
#include <fstream>
#include <string>

using namespace std;

int main()
{
    ifstream fin ("gift1.in");
    ofstream fout ("gift1.out");

    int initial, account[10], recipients, NP;
    string names[10], giver, receiver;

    fin >> NP;

    for (int k = 0; k < NP; k++)
    {
        fin >> names[k];
        account[k] = 0;
    }

    for (int k = 0; k < NP; k++)
    {
        fin >> giver >> initial >> recipients;

        for (int y = 0; y < NP; y++)
        {
            if( names[y] == giver)
                break;
        }
        account[k] -= initial;
        account[k] += initial  % recipients;

        for (int y = 0; y < recipients; y++)
        {
            fin >> receiver;

            for (int j = 0; j < NP; j++)
            {
                if(names[j] == receiver)
                    break;
            }
            if(recipients != 0)
            {
                for(int x = 0; x < NP; x++)
                {
                    account[x] += (int)initial / recipients;
                }
            }
        }
        fout << names[k] << " " << account[k] << endl;
    }

    return 0;
}   

1 个答案:

答案 0 :(得分:1)

当您使用初始%收件人时,如果没有收件人,则可以除以零。添加条件语句以过滤掉该案例;这就是浮点异常的原因。