#include<iomanip>引入接下來可以使用操控子(manipulator)輸出 如:cout<<manipulator
本題會使用到的操控子是setfill(char)、setw(int)
setfill(char)決定填充內容、setw(int)決定內容長度(亦可用right、left決定長度)
如:
cout<<setfill('='); cout<<right<<setw(4)<<"hi"<<endl;
結果應為:
==hi
但這應該不是正規解法啦呵呵