天天看点

C++中保留小数位数的方法

#include <iomanip>
#include <iostream>
using namespace std; 
//.........	
double x=123;
cout <<setprecision(2) <<std::fixed <<x <<endl;      

继续阅读