本文介绍了如何计算具有 n 位小数的浮点数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
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::fixed
和 std::setprecision
:
std::cout << std::fixed << std::setprecision(3) << a;
这些需要以下标题:
#include <iomanip>
这篇关于如何计算具有 n 位小数的浮点数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!