1. 程式人生 > >保留小數,但會四舍五入

保留小數,但會四舍五入

AC ++ bits 四舍五入 main sin return IT ble

#include<bits/stdc++.h>
using namespace std;
main()
{double a=2.9939;

cout<<fixed<<setprecision(2)<<a;printf("%.3f", a);
return 0;
}

保留小數,但會四舍五入