在C ++中通过cout打印具有固定小数位数的浮点值
在这里,我们将学习如何在C ++程序中使用cout打印具有固定小数位数的浮点值?
cout缺省情况下(不带尾随零)打印一个浮点数,最大不超过6个小数位(某些编译器可能打印5个小数位)。
考虑给定声明
int main(){float x=10.38989445f;
cout<<x<<endl;
return 0;
}
输出将是10.3899
如何打印固定位数的浮点数?
我们可以使用std::fixed和std::setprecision打印具有固定小数位数的浮点数,这些是操纵器,它们在iomanip头文件中定义。
setprecision的语法
std::setprecision(int n)
此处,n是小数点后的位数(小数位数)
阅读更多:std::setprecision
考虑给定的例子
#include <iostream>#include <iomanip>
using namespace std;
int main(){
float x=10.3445f;
cout<<fixed<<setprecision(5)<<x<<endl;
cout<<fixed<<setprecision(2)<<x<<endl;
cout<<fixed<<setprecision(3)<<x<<endl;
cout<<fixed<<setprecision(0)<<x<<endl;
return 0;
}
输出结果
10.3445010.34
10.344
10
以上是 在C ++中通过cout打印具有固定小数位数的浮点值 的全部内容, 来源链接: utcz.com/z/321517.html