C++保留小数数位
时间: 2023-07-04 20:17:45 浏览: 99
保留 x 小数点后 n 位 C++功能代码,float blnXSFun(float x,int n)。
在C++中,可以使用iomanip头文件中的setprecision函数来设置保留小数的位数。例如,要保留小数点后两位,可以使用以下代码:
```
#include <iostream>
#include <iomanip>
using namespace std;
int main() {
double num = 3.1415926;
cout << fixed << setprecision(2) << num << endl;
return 0;
}
```
输出结果为:3.14
阅读全文