fork(1) download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. string imie;
  9. string wyraz;
  10.  
  11. cout << "Podaj imie: ";
  12. cin >> imie;
  13.  
  14. for (string::iterator i = imie.end(); i >= imie.begin(); i--)
  15. {
  16. wyraz += *i;
  17. }
  18.  
  19. cout << endl;
  20. cout << imie << " " << wyraz << endl;
  21.  
  22. return 0;
  23. }
Success #stdin #stdout 0s 3232KB
stdin
jakubs
stdout
Podaj imie: 
jakubs sbukaj