cout输出小数点后两位
时间: 2023-09-18 14:05:42 浏览: 137
可以使用iomanip库中的setprecision(2)函数来控制输出小数点后两位,具体示例如下:
```c++
#include <iostream>
#include <iomanip>
int main() {
double num = 3.1415926;
std::cout << std::fixed << std::setprecision(2) << num << std::endl;
return 0;
}
```
输出结果为:
```
3.14
```
其中,std::fixed用于将浮点数输出为定点数,而std::setprecision(2)则表示输出小数点后两位。
阅读全文