Printing an integer with internal spacing and forcing the plus sign. : int output « Data Type « C++






Printing an integer with internal spacing and forcing the plus sign.

  
#include <iostream>
#include <iomanip>

using std::cout;
using std::endl;
using std::ios;
using std::setiosflags;
using std::setw;

int main()
{
   cout << setiosflags( ios::internal | ios::showpos )
        << setw( 10 ) << 123 << endl;
   return 0;
}
  
    
  








Related examples in the same category

1.Decimal in hexadecimal
2.Decimal in octal
3.Decimal in decimal
4.Display decimal value as hexadecimal value
5.Display decimal value as Octal value
6.Output integer with different base: 8, 10, 16
7.Right justification
8.Left justification
9.Use .(dot) as place holder
10.Set width of output
11.Using hex, oct, dec and setbase stream manipulators.
12.Set showpos flag for decimal
13.Making I/O in Octal Format