輸出格式控制setfill和setw使用
阿新 • • 發佈:2019-02-16
注意問題:
所使用的標頭檔案為iomanip.h
例如:
cout<<'s'<<setw(8)<<'a'<<endl;
則在螢幕顯示
s a
//s與a之間有7個空格,setw()只對其後面緊跟的輸出產生作用,如上例中,表示'a'共佔8個位置,不足的用空格填充。若輸入的內容超過setw()設定的長度,則按實際長度輸出。
setw()預設填充的內容為空格,可以setfill()配合使用設定其他字元填充。
如
cout<<setfill('*')<<setw(5)<<'a'<<endl;
則輸出:
****a //4個*和字元a共佔5個位置。
ep:
[cpp] view plaincopyprint?- <span style="font-size: 14px;">// test_max.cpp : 定義控制檯應用程式的入口點。
- #include "stdafx.h"
- #include <iostream>
- #include <iomanip> //setw(),setfill所在標頭檔案
- usingnamespace std;
- class NUM
- {
- public:
- NUM(int i):nm(i){}
- void incr() const
- {
- nm++;
- }
- void decr() const
- {
- nm--;
- }
- public:
- mutableint nm;
- };
- int main(void)
- {
- NUM a(0);
- string str="";
- for(int i=0;i<5;i++)
- {
- a.incr();
- cout<<setfill('*')<<setw(a.nm)<<str.c_str()<<endl;
- }
- for(int i=0;i<5;i++)
- {
- a.decr();
- cout<<setw(a.nm)<<str.c_str()<<setfill('*')<<endl;
- }
- system("pause");
- return 0;
- }</span>
<span style="font-size: 14px;">// test_max.cpp : 定義控制檯應用程式的入口點。
#include "stdafx.h"
#include <iostream>
#include <iomanip> //setw(),setfill所在標頭檔案
using namespace std;
class NUM
{
public:
NUM(int i):nm(i){}
void incr() const
{
nm++;
}
void decr() const
{
nm--;
}
public:
mutable int nm;
};
int main(void)
{
NUM a(0);
string str="";
for(int i=0;i<5;i++)
{
a.incr();
cout<<setfill('*')<<setw(a.nm)<<str.c_str()<<endl;
}
for(int i=0;i<5;i++)
{
a.decr();
cout<<setw(a.nm)<<str.c_str()<<setfill('*')<<endl;
}
system("pause");
return 0;
}</span>