fork download
  1. using static System.Console;
  2. using System.Text;
  3.  
  4. public class Program {
  5. public static void Main() {
  6. WriteLine(" Digite a Palavra");
  7. var s = ReadLine();
  8. var revs = new StringBuilder(s.Length);
  9. for (int i = s.Length - 1; i >= 0; i--) revs.Append(s.Substring(i, 1));
  10. WriteLine(revs);
  11. }
  12. }
  13.  
  14. //https://pt.stackoverflow.com/q/498676/101
Success #stdin #stdout 0.02s 15912KB
stdin
teste
stdout
 Digite a Palavra
etset