fork download
  1. using static System.Console;
  2.  
  3. public class Program {
  4. public static void Main() {
  5. string frase = "Diego lima de Aquino";
  6. for (int i = frase.Length - 1; i >= 0; i--) WriteLine(frase[i]);
  7. }
  8. }
  9.  
  10. //https://pt.stackoverflow.com/q/159835/101
Success #stdin #stdout 0.02s 15636KB
stdin
Standard input is empty
stdout
o
n
i
u
q
A
 
e
d
 
a
m
i
l
 
o
g
e
i
D