fork download
  1. using System;
  2. using System.Text;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. string s = "Stack Overflow";
  9. StringBuilder sb = new StringBuilder();
  10. for(var i = s.Length-1; i>=0; i--)
  11. {
  12. sb.Append(s[i]);
  13. }
  14. Console.WriteLine(sb.ToString());
  15. }
  16. }
Success #stdin #stdout 0.02s 22320KB
stdin
Standard input is empty
stdout
wolfrevO kcatS