在C中我们可以使用 printf("%.2lf",a);但在C++中是没有格式操作符的,该如何操作:
C++使用setprecision()函数,同时必须包含头文件iomanip,如下:
#include"iomanip"
using namespace std;
……
cout.setf(ios::fixed);//位数不够自动补0(若需要自动补0,在cout之前进行补0的定义,cout中加入“<<fixed”)
cout << fixed <<setprecision(2)<<a<<endl;