在C ++中,浮点数的大小为4字节或8字节。因此它最多可以存储小数位。例如,1/3 = 0.333333……直到无穷大。如果我们将其存储在浮点型变量中,则它将存储一些有效数字。默认值为6。因此,C ++中的浮点数通常最多可以显示6个小数位。
我们可以使用setprecision更改精度的大小。这存在于iomanip头文件中。让我们看一个例子来了解这个想法。
#include <iostream> #include <iomanip> using namespace std; int main() { double x = 2.3654789d; cout << "Print up to 3 decimal places: " << setprecision(3) << x << endl; cout << "Print up to 2 decimal places: " << setprecision(2) << x << endl; cout << "Print up to 7 decimal places: " << setprecision(7) << x << endl; }
输出结果
Print up to 3 decimal places: 2.365 Print up to 2 decimal places: 2.37 Print up to 7 decimal places: 2.3654789