C++ 控制输出格式

#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
    int a = 10;
    cout.width(10);
    cout.fill('#');
    cout << a << endl;
    cout.width(10);
    cout.setf(ios::left|ios::hex);
    //清掉之前的输出格式 
    cout.unsetf(ios::dec|ios::oct);
    cout.setf(ios::showbase);
    cout.setf(ios::showpoint);
    //cout.precision(2);
    cout << 123456 <<endl;
    return 0;
}

 

posted @ 2014-04-13 22:58  秋月的私语  阅读(257)  评论(0编辑  收藏  举报