fork download
  1. #include <iostream>
  2. #include <iomanip>
  3. using namespace std;
  4.  
  5. string person = "Wolfgang Smith";
  6.  
  7. int main()
  8. {
  9.  
  10. cout << left;
  11. cout << setw(20);
  12. cout << person << endl;
  13. cout << right;
  14. cout << person << endl;
  15. return 0;
  16. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
Wolfgang Smith      
Wolfgang Smith