C++使用fixed和precision控制小数和有效位数的输出

头文件iomanip中包含了setiosflags与setprecision,也可以用fixed 代替setiosflags(ios::fixed)

#include//fixed
#include//包含setiosflags与setprecision
using namespace std;
int main()
{
	//fixed控制小数,precision控制有效位数
	double a = 123.6666;
	printf("%.2f\n", a); //保留两位小数,输出123.67

	cout << a << endl;   //默认情况下,保留六位有效数字,输出123.667

	cout.setf(ios::fixed); //控制小数
	cout << a << endl;   //保留六位小数,输出123.666600

	cout.precision(1);    //控制保留位数
	cout << a << endl;   //保留一位小数,输出123.7

	cout.unsetf(ios::fixed);

	cout << a << endl;   //保留一位有效数字,输出1e+02

	cout << setprecision(2) << a << endl;   //保留两位有效数字,输出1.2e+02
	cout << setiosflags(ios::fixed) <


输出:

123.67
123.667
123.666600
123.7
1e+02
1.2e+02
123.67
123.67


参考资料:

http://www.cplusplus.com/reference/iomanip/setprecision/

http://www.cplusplus.com/reference/iomanip/setiosflags/

http://www.cplusplus.com/reference/ios/ios_base/precision/

http://www.cnblogs.com/wushuaiyi/p/4439361.html

http://blog.csdn.net/u011321546/article/details/9293547


你可能感兴趣的:(C/C++)