I wanna output a matrix in right-justified fields of length 8 in C++.
Is there any facility to make that easy to code?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
You can use std::right and std::setw to get right justified fields in iostream. The default padding char is space, but you can change it with
|
|||||
|
|
Yes
will right justify and
will set the field width to 8. |
|||
|
|
|
Perhaps |
|||||||||||
|

printf("% 8d", x);– a-z Nov 14 '11 at 15:16