Guest User

Untitled

a guest
Mar 20th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #include <iostream>
  2. #include <iomanip>
  3. using namespace std;
  4. int main()
  5. {
  6. for (int i = 0; i < 5; ++i)
  7. cout <<'|' << setw(10) << setiosflags(ios_base::right) << "word1"
  8. << setw(5) << '|' << setw(10) << "word2" << setw(5) << '|' << endl;
  9. return 0;
  10. }
Add Comment
Please, Sign In to add comment