码迷,mamicode.com
首页 > 其他好文 > 详细

cout<<fixed表示按一般方式输出浮点数

时间:2018-05-05 15:31:55      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:bsp   ret   return   表示   main   int   nbsp   fixed   out   

 

int main()
{
     double num=0.00001;
     cout<<num<<endl;
     cout<<fixed;
     cout<<num;
     return 0;
}

第一次输出的是1e-5

第二次为0.00001;

cout<<fixed表示按一般方式输出浮点数

标签:bsp   ret   return   表示   main   int   nbsp   fixed   out   

原文地址:https://www.cnblogs.com/Fy1999/p/8994677.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!