标签:end precision class 函数 name pre Fix 计算 map
steprecision();
setprecision是一个计算机函数,功能是控制输出流显示浮点数的有效数字个数 [1] ,如果和fixed合用的话,可以控制小数点后面有几位。
头文件为iomanip.
例如:
cout<<setprecision(4)<<321.45678<<endl;//输出结果为:321.5 cout<<fixed<<setprecision(4)<<321.45678<<endl;//输出结果为:321.4566
标签:end precision class 函数 name pre Fix 计算 map
原文地址:https://www.cnblogs.com/hellobyebye/p/14283996.html