c++ float 保留两位小数
时间: 2024-06-04 15:04:51 浏览: 235
保留两位小数
在C++中,可以使用流操纵符setprecision来设置浮点数的输出精度,示例代码如下:
```
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
float num = 3.1415926;
cout << fixed << setprecision(2) << num << endl;
return 0;
}
```
在上述代码中,我们使用fixed操纵符来设置小数点后的位数固定,然后使用setprecision(2)来设置保留两位小数。输出结果为3.14。
阅读全文