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

C++,cout输出小数点后指定位

时间:2017-08-14 10:02:14      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:include   小数   小数点   std   clu   blog   turn   需要   文件   

#include <iostream>
#include <iomanip>//需要添加此头文件
using namespace std;
int main()
{
    float a=0.20001;
    float b=2;
    cout<<setprecision(2)<<a<<endl;//输出小数点后两位,0会舍去
    cout.setf(ios::fixed);
    cout<<fixed<<setprecision(2)<<b<<endl;//补零
    return 0;
}

 

C++,cout输出小数点后指定位

标签:include   小数   小数点   std   clu   blog   turn   需要   文件   

原文地址:http://www.cnblogs.com/LuRenJiang/p/7355851.html

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