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

关于 setw() 函数(C++)

时间:2019-12-25 01:52:19      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:stream   技术   img   using   str   class   setfill   ++   flag   

// about setw()
#include <iostream>
#include <iomanip>
#include <cstring>


using namespace std;

int main()
{
    string name = "wangyang"; // generate a string
    cout << setiosflags(ios::right) << setfill(a) << setw(20) << name << endl; // control the word count, the alignment, the fill

    return 0;
}

技术图片

关于 setw() 函数(C++)

标签:stream   技术   img   using   str   class   setfill   ++   flag   

原文地址:https://www.cnblogs.com/zijidefengge/p/12094337.html

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