标签:
%e基数部分大于6位则进行截取,并四舍五入。
printf"%e\n",3.2132567e-2; //3.213257e-002
%g按浮点型和指数型中的最准确的输出,假如准确度相同则以最短输出
3.21e-4浮点型为0.000321 指数型为3.210000e-004浮点型比指数型短,一切运用浮点型输出
printf"%f,%g,%e\n",3.21,3.21e-4,3.21e2;
3.210000,0.000321,3.210000e+002
3.21e-5浮点型为0.000032 指数型为3.210000e-005因为指数型比浮点型表明的更准确,一切运用指数型输出
printf"%f,%g,%e\n",3.21e-5,3.21e-5,3.21;
0.000032,3.210000e-005,3.210000e+000
\t为
printf"abc\t\n";abc----- abc后边为5个空格
http://bbs.tiexue.net/p_8655841_1.html
http://bbs.tiexue.net/p_8655842_1.html标签:
原文地址:http://blog.csdn.net/auiou/article/details/44149177