fork download
  1. #include<iostream>
  2. using namespace std;
  3. #include<string>
  4. #include<sstream>
  5. int main(){
  6. string a;
  7. getline(cin,a);
  8.  
  9. stringstream s(a);
  10. stringstream ss(a);
  11.  
  12. string b,c;
  13. string rev;
  14.  
  15. // int k;
  16.  
  17. int is_last = 0;
  18.  
  19. while(s >> b){
  20. is_last++;
  21. }
  22.  
  23. int trac = 0;
  24.  
  25. while(ss >> c){
  26.  
  27. // k=0;
  28. int sz = c.size();
  29.  
  30. for(int l = sz-1 ; l>=0 ; l--){
  31. // rev[k] = z[l];
  32. rev = rev + c[l];
  33. // k++;
  34. }
  35.  
  36. trac++;
  37. if(trac == is_last){
  38. cout<<rev;
  39. }else{
  40. cout<<rev<<" ";
  41. }
  42.  
  43. rev.clear();
  44. rev.shrink_to_fit();
  45.  
  46. }
  47.  
  48.  
  49. return 0;
  50. }
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
Standard output is empty