2 回答
FFIVE
TA贡献1797条经验 获得超6个赞
C++里标准输入输出使用的格式化标志之一
如:
setf (ios_base: :showpoint)//是设置小数点模式
就是说,设定为showpoint后,在不必要的时候也显示10进数的小数点以及其后的0
参考例子:
// modify showpoint flag
#include <iostream>
using namespace std;
int main () {
double a, b, pi;
a=30.0;
b=10000.0;
pi=3.1416;
cout.precision (5);
cout << showpoint << a << '\t' << b << '\t' << pi << endl;
cout << noshowpoint << a << '\t' << b << '\t' << pi << endl;
return 0;
}
The execution of this example displays something similar to:
30.000 10000. 3.1416
30 10000 3.1416
- 2 回答
- 0 关注
- 1175 浏览
添加回答
举报
0/150
提交
取消