如果是C++的输出流(cout/wcout等),输出fixed即可,例如
double x = 1.40845e-008;cout << fixed << x << endl; //当然,你要设置一下精度,直接输出是0.000000的
如果是C的输出(printf/wprintf等),格式应该是%f或%F,例如
double x = 1.40845e-8;printf("%f", x); //当然,你要设置一下精度,直接输出是0.000000的