gpt4 book ai didi

C++ 输出对齐和小数点占位符?

转载 作者:太空狗 更新时间:2023-10-29 20:29:44 27 4
gpt4 key购买 nike

嗨,我有一个小问题。
我正在做我的C++作业,示例输出是

% cat this.out
5.00 0.00
1.55 4.76
-4.05 2.94
-4.05 -2.94
1.55 -4.76

但我得到的是

% cat test.out
5 0
1.55 4.76
-4.05 2.94
-4.05 -2.94
1.55 -4.76

而且我不知道如何使我的输出格式看起来像那样。在这种情况下,我遇到的另一个问题是,我希望输出中的第一行类似于 5.00 0.00,但即使我设置了 precision(3),它也不起作用>

这是我的代码生成的输出,请看一下。

file.open (filename, fstream :: in | fstream :: trunc);
if(!file.is_open())
{
cerr << "Error opening file " << filename << endl;
cout << "Exiting..." << endl;
exit(0);
}
for(i = 0 ; i < num; i ++)
{
angle = 2 * M_PI * i/num;
x = rad * cos(angle);
y = rad * sin(angle);
file.precision(3);
// x, y are double
file << "\t" << x << "\t" << y << endl;
}
cout << "finished";
file.close();

最佳答案

您需要查找 Input/output manipulators在标准库标题中 <iomanip> .

这些是内联使用的,例如:

std::cout << "\t" << std::fixed << std::setprecision(z) << x

您最感兴趣的是:

关于C++ 输出对齐和小数点占位符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9131090/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com