四舍五入保留
【c】使用printf
printf("%.7f",n); //按照四舍五入保留位数
【c++】
#include <iostream>
using namespace std;
#include <iomanip>
int main()
{
const double n=98.754321;
cout << 12345677.5 <<endl;//默认精度6位,输出为1.23457e+007
cout << n << endl; //默认精度6位,输出为98.7543
cout << setprecision(4) << n << endl; //设置精度为4位,输出为98.75
//添加头文件#include <iomanip>。 四舍五入。 不足不补零。
cout << 123456.5 <<end; //setprecision(4)仍保持作用,输出为1.235e+005
cout.precision(6); //去掉setprecision(4)限制,恢复成默认6位
cout << n << endl; //输出为98.7543
cout << fixed << setprecision(5) << n << endl; //设置小数点后位数为1位,输出为98.75432
cout.unsetf(ios::fixed); //去掉fixed限制
cout << n << endl; //输出为98.754
return 0;
}
非四舍五入保留
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
double n=98.9754321
n=floor(n*100.0)/100.0; //floor()向下取整
cout << n << endl;
return 0;
}