c++輸出對齊函數 setw()

int a=10;  // 也能夠是string a string b   字符串對齊的代碼和int型實際上是同樣的,底下都不改,輸出的格式也會右對齊,已經嘗試過  int b=20;  cout.setf(ios::right,ios::adjustfield);  cout.fill('0');  cout << setw(5) << a <<endl;  cout << setw(5) <<
相關文章
相關標籤/搜索