C++中的setprecision
是一个iomanip控制符,用于设置浮点数的精度。它用于控制输出流的小数点后的位数。例如,setprecision(n)
将浮点数的精度设置为n,并将在输出流中显示n位小数。在使用setprecision
之前,需要包括<iomanip>
头文件。
下面是一个示例代码,演示了如何使用setprecision
设置输出流的浮点数精度:
#include <iostream>
#include <iomanip>
int main() {
double num = 3.14159265358979323846;
std::cout << std::setprecision(4) << num << std::endl;
std::cout << std::setprecision(8) << num << std::endl;
return 0;
}
输出将分别是:
3.142
3.1415927
在上面的示例中,我们使用setprecision(4)
控制输出流中浮点数的小数点后4位,然后使用setprecision(8)
控制输出流中浮点数的小数点后8位。