#36829: 使用iomanip含式庫


wutc928@gmail.com (tc wu)

學校 : 不指定學校
編號 : 240242
來源 : [111.249.135.31]
最後登入時間 :
2024-02-08 19:11:59
d649. 數字三角形 -- 麗山高中迴圈36題 | From: [111.249.193.148] | 發表日期 : 2023-08-11 11:25

使用

#include<iomanip>引入
接下來可以使用操控子(manipulator)輸出 如:cout<<manipulator

本題會使用到的操控子是setfill(char)、setw(int)

setfill(char)決定填充內容、setw(int)決定內容長度(亦可用right、left決定長度)

如:

cout<<setfill('='); cout<<right<<setw(4)<<"hi"<<endl;

結果應為:

==hi

但這應該不是正規解法啦呵呵

 

 
ZeroJudge Forum