标签: c++
我试图使用cout << <<endl格式找到%2d的等价物。我怎么能这样做?
cout << <<endl
答案 0 :(得分:13)
标题<iomanip>包含流操作符setw:
<iomanip>
setw
cout << setw(2) << myint << endl
您可能也对setfill感兴趣:
cout << setfill('0') << setw(2) << myint << endl
将填充0而不是空格。
答案 1 :(得分:4)
您需要setw