从文件c ++读取错误的数字

时间:2014-11-08 09:09:53

标签: c++

我有一个矩阵为n x n的文件,例如我得到了这些数字:

3.162277660168379 4.110960958218893 7.58946638440411 -1.110223024625157e-016 6.715653356152327 6.224264086189961 -5.551115123125783e-016 -1.332267629550188e-015 3.107818621696872

并得到了代码:

std::ifstream in("R.txt");
std::string line;
float B[4][4];
int u = 1, y = 1;
while (std::getline(in, line))
{
    float value;
    int y = 1;
    std::stringstream ss(line);
    while (ss >> value)
    {
        B[u][y] = value;
        cout << setprecision(16) << B[u][y] << " ";
        ++y;
    }
    cout << endl;
    ++u;
}

当我尝试在命令行输出时得到这个答案:

3.162277698516846 4.110960960388184 7.589466571807861 -1.110223024625157e-016 6.715653419494629 6.224264144897461 -5.551115123125783e-016 -1.332267629550188e-015 3.107818603515625

有任何想法为什么我的号码错了吗?从第8位开始? :) 感谢

1 个答案:

答案 0 :(得分:4)

而不是使用float使用double,因为float只能工作8个小数位