标题:setw 操纵元问题,高手请进! ! ! ! ! ! !
只看楼主
zyc19911109
Rank: 1
来 自:安徽和县
等 级:新手上路
帖 子:10
专家分:0
注 册:2010-4-1
结帖率:100%
已结贴  问题点数:20 回复次数:2 
setw 操纵元问题,高手请进! ! ! ! ! ! !
大家先来看一下这个代码:
#include<iostream>
#include<iomanip>

int main()
{
    using namespace std;
   
    cout.setf(ios::right);
    cout.width(5);
    cout << 123 << "*" << endl;
    cout << 123 << "*" << endl;
    cout.width(5);
    cout << 123 << "*" << endl;

    cout.setf(ios::left);
    cout << setw(5) << 123 << "*" << endl;
    cout << 123 << "*" << endl;
    cout << setw(5) << 123 << "*" << endl;
   
    cout.setf(ios::right);
    cout << setw(5) << 123 << "*" << endl;
    cout << 123 << "*" << endl;
    cout << setw(5) << 123 << "*" << endl;
   
    return 0;
}
这是结果:
  123*
123*
  123*
  123*
123*
  123*
  123*
123*
  123*

为什么会出现这种结果呢?cout.setf(ios::left)不是应该将 setw 操纵元设置成 左对齐,右补空格 的状态吗?
大家再把:
    cout.setf(ios::right);
    cout.width(5);
    cout << 123 << "*" << endl;
    cout << 123 << "*" << endl;
    cout.width(5);
    cout << 123 << "*" << endl;
删掉看看,删掉之后,好像就行了。这又是为什么呢?

这是结果的图:
搜索更多相关主题的帖子: setw 
2010-04-04 16:20
lijm1989
Rank: 11Rank: 11Rank: 11Rank: 11
来 自:珠海
等 级:贵宾
威 望:12
帖 子:675
专家分:2844
注 册:2009-10-14
得分:20 
注意用cout.setf()设置输出的格式后,换别的先用cout.unsetf()取消先前格式。试试。。
收到的鲜花
  • zyc199111092010-04-05 11:19 送鲜花  3朵   附言:问题解决了
2010-04-04 23:02
zyc19911109
Rank: 1
来 自:安徽和县
等 级:新手上路
帖 子:10
专家分:0
注 册:2010-4-1
得分:0 
可以了,谢了

Coding*
2010-04-05 11:18



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-301656-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.209905 second(s), 10 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved