C++如何控制输出小数点位数

2024-12-04 07:51:26
推荐回答(3个)
回答1:

C++在头文件中定义了输出格式控制符,setiosflags(ios_base:fmtflags mask)和setprecision(int n )是其中的两个,前者根据参数mask设定输出格式,后者根据n设定小数的输出位数。

回答2:

#include
#include //要用到格式控制符

void main()
{
double amount = 22.0/7;
cout < cout < < < < <
cout < cout <
cout <
<
cout < }

运行结果为:
3.14286
3
3
3.1
3.14
3.143
3.14285714
3.14285714e+00

回答3:

#include
然后
cout<就是你要的位数