FFIVE
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.141630 10000 3.1416