c++ 保留小数位数
时间: 2024-08-20 17:01:15 浏览: 77
Java指定保留小数位数的方法
在 C++ 中,如果你想保留小数位数,可以使用 `std::fixed` 和 `std::setprecision` 这两个 iostream 标准库函数配合 `cout` 输出数字。`std::fixed` 会固定小数点后的精度,并自动处理科学计数法,而 `std::setprecision(n)` 则设置输出的小数位数。
例如:
```cpp
#include <iostream>
#include <iomanip> // 引入iomanip头文件用于控制输出精度
int main() {
double num = 3.1415926;
std::cout << std::fixed << std::setprecision(2) << num << std::endl; // 保留两位小数
return 0;
}
```
这将输出 `3.14`,其中 `2` 表示我们设置了输出的精确度为两位小数。
阅读全文