C++ 10.0/3.0 保留小数点15位
时间: 2023-07-30 10:12:05 浏览: 121
C# 保留几位小数
5星 · 资源好评率100%
在 C++ 中保留小数点 15 位可以使用 `std::setprecision()` 函数,该函数是在头文件 `<iomanip>` 中定义的。具体示例如下:
```cpp
#include <iostream>
#include <iomanip>
int main() {
double num = 10.0 / 3.0;
std::cout << std::fixed << std::setprecision(15) << num << std::endl;
return 0;
}
```
输出结果为:
```
3.333333333333333
```
在上面的代码中,`std::fixed` 表示按照固定的小数位数输出,`std::setprecision(15)` 表示保留小数点后 15 位,`num` 是计算结果。最终输出结果为 3.333333333333333,保留了小数点后 15 位。
阅读全文