码迷,mamicode.com
首页 > 编程语言 > 详细

C++标准库

时间:2020-04-05 20:18:10      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:文件   c++   浮点数   默认   style   浮点   数位   int   Fix   

 

1. cout控制输出浮点数位数

  头文件 iomanip

  默认6位有效数字;setprecision为设置有效位数,加上fixed就是设置小数位数,并且设置之后对后面的默认输出有效

double x = 0.03456789;
cout<<x<<endl;   //6位有效数字  0.0345679
cout<<setprecision(4)<<x<<endl; //0.03457
cout<<setprecision(8)<<x<<endl; //0.03456789  不够8位,不管
cout<<fixed<<setprecision(4)<<x<<endl; //0.0346 4位小数
cout<<x<<endl;  //4位小数 0.0346
cout.unsetf(ios::fxed); //去掉fixed设置
cout<<x<<endl;   //4位有效数字 0.03457

 

  设置必须输出小数点:

cout<<setiosflags(ios::fixed|ios::showpoint)<<setprecision(1)<<x;

 

C++标准库

标签:文件   c++   浮点数   默认   style   浮点   数位   int   Fix   

原文地址:https://www.cnblogs.com/taoXiang/p/12638557.html

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