废话不多说,直接进主题
1、保留有效数字问题
#include<iostream>
#include<iomanip>
#include "stdlib.h"
using namespace std;
int main(){
double PI=3.1415926;
cout<<setprecision(3)<<PI<<endl;
system("pause");
return 0;
}
2、保留小数点后几位问题
上例中定义的PI小数点后有数位,可以保留小数点后两位(三位有效数字ÿ