[ create a new paste ] login | about

Link: http://codepad.org/eUgtkdOL    [ raw code | output | fork ]

C++, pasted on May 11:
1
2
3
4
5
6
7
8
9
#include <iostream>
#include <iomanip>
using namespace std;

int main () {
  cout << 77; cout << setw (10); cout << 33; cout << endl;
  cout << 13337 << setw (10) << -12 << endl;
  return 0;
}


Output:
1
2
77        33
13337       -12


Create a new paste based on this one


Comments: