C++ IO流:输入、输出格式控制

一、代码

        setf()、unsetf()

        ios::hex、ios::showbase、ios::uppercase

        dec、oct、hex、setw()、setfill()

        setiosflag()

#include <iostream>
#include <iomanip>
using namespace std;

//setf()、unsetf()
//ios::hex、ios::showbase、ios::uppercase
//dec、oct、hex、setw()、setfill()
//setiosflag()
int main(int argc, char*argv[])
{
        int x = 16, y = 32, z = 64;

        cout<<x<<" "<<y<<" "<<z<<endl;

        //setf ios::hex
        cout.setf(ios::hex, ios::basefield);

        cout<<x<<" "<<y<<" "<<z<<endl;

        //setf ios::showbase ios::uppercase
        cout.setf(ios::showbase | ios::uppercase);

        cout<<x<<" "<<y<<" "<<z<<endl;

        //unsetf ios::showbase ios::uppercase
        cout.unsetf(ios::showbase | ios::uppercase);

        cout<<x<<" "<<y<<" "<<z<<endl;

        //unsetf ios::hex
        cout.unsetf(ios::hex);

        cout<<x<<" "<<y<<" "<<z<<endl<<endl;



        //dec oct hex
        cout<<dec<<x<<endl;
        cout<<oct<<x<<endl;
        cout<<hex<<x<<endl;

        //setw setfill
        cout<<setw(4)<<x<<endl;
        cout<<setw(4)<<setfill('x')<<x<<endl<<endl;


        //setiosflags 
        cout<<setiosflags(ios::showbase | ios::uppercase);
        cout<<x<<endl;


        return 0;
}

二、输出结果


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值