Tagged Questions
The setw tag has no wiki summary.
6
votes
2answers
239 views
What's the deal with setw()?
I recently was bitten by the fact that ios_base::width and/or the setw manipulator have to be reset with every item written to the stream.
That is, you must do this:
while(whatever)
{
mystream ...
6
votes
1answer
1k views
“Permanent” std::setw
is there any way how to set std::setw manipulator (or its function 'width') permanently? Look at this:
#include <iostream>
#include <iomanip>
#include <algorithm>
#include ...
2
votes
1answer
101 views
Printing a table C++
I am trying to print a table that looks like this:
Number of Queues
Oc 2 3 4 5
50,000 average-max average-max ...
2
votes
1answer
183 views
prepending number with 0's [closed]
Possible Duplicate:
Print leading zeros with C++ output operator (printf equivalent)?
#include <iostream>
#include <iomanip>
int main()
{
int n = 16;
std::cout << ...
2
votes
2answers
629 views
Truncate C++ string fields generated by ostringstream, iomanip:setw
In C++ I need string representations of integers with leading zeroes, where the representation has 8 digits and no more than 8 digits, truncating digits on the right side if necessary. I thought I ...
0
votes
3answers
182 views
Setw and setfill equivalent in BASH
Could you please tell me what the equivalent BASH code for the following C++ snippet would be:
std::cout << std::setfill('x') << std::setw(7) << 250;
The output is:
xxxx250
...
0
votes
3answers
182 views
Displaying text in correct column
After getting a helpful answer here, I have run into yet another problem: displaying two or more strings in the column I want it to be displayed in. For an example of the problem I have, I want this ...