如何计算具有 n 位小数的浮点数

2022-01-12 00:00:00 formatting c++ cout

可能重复:
如何打印双精度值使用 cout 的全精度?

float a = 175.;
   cout << a;

如果我运行之前的代码,我只会得到 175,我怎么能用(例如)3 个小数位计算出这个数字,即使它们是零.我怎样才能打印175.000"?!

If I run the previous code I'll get just 175, how can I cout the number with (for example) 3 decimal places even they were zeros .. How can I print "175.000" ?!

推荐答案

你需要 std::fixedstd::setprecision:

 std::cout << std::fixed << std::setprecision(3) << a;

这些需要以下标题:

#include <iomanip>

相关文章