fork download
  1. #include<iostream>
  2. #include<cstdio>
  3. #include<vector>
  4. #include<bits/stdc++.h>
  5. using namespace std;
  6. int Length(string s)
  7. {
  8. int len=0;
  9. for(int i=0;s[i]!='\0';i++)
  10. {
  11. len++;
  12. }
  13. return len;
  14. }
  15. string Reverse(string s)
  16. {
  17. string res=" ";
  18. int lens=Length(s);
  19. for(int i=lens-1;i>=0;i--)
  20. {
  21. res=res+s[i];
  22. }
  23. return res;
  24. }
  25. int main()
  26. {
  27. string s;
  28. cin>>s;
  29. cout<<Reverse(s);
  30. return 0;
  31. }
  32.  
Success #stdin #stdout 0.01s 5296KB
stdin
khaleda%4৳ jhuma
stdout
 ���4%adelahk