fixed在和setprecision联系用时提示没有得到声明或定义
#include<iostream.h>#include<iomanip.h>
void main()
{
float fx=10.0,fy=6.0,fz=fx/fy,dx=10.0,dy=6.0;
double dz=dx/dy;
cout<<setprecision(20)<<fx<<"/"<<fy<<"="<<fz<<endl;
cout<<"dz=";
cout<<fixed<<setprecision(3)<<dz<<endl;
}