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

Manipulator(流操作符)

时间:2020-01-31 15:54:40      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:fixed   tor   空白   clu   流操作   图片   static   space   name   

Manipulator(流操作符)

#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
    float a = 2.5;
    cout<<a<<endl;
    cout<<static_cast<int>(a)<<endl;
    float b = 3.1415926;
    cout<<b<<endl;
    cout<<setw(4)<<a<<endl;
    cout<<setfill('*')<<setw(4)<<a<<endl;
    cout<<setw(4)<<b<<endl;
    cout<<setprecision(8)<<b<<endl;
    cout<<fixed<<setprecision(3)<<b<<endl;
    //char ch;
    //cin>>noskipws>>ch;  能够读入空白字符,而不是跳过
    return 0;
}

技术图片

Manipulator(流操作符)

标签:fixed   tor   空白   clu   流操作   图片   static   space   name   

原文地址:https://www.cnblogs.com/La-pu-ta/p/12245498.html

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