Pessoal dá erro na hora de testar: Cannot make a static reference to the non-static method imprimeLetraPorLetraReverso(String) from the type teste. E ainda sugere para que eu altere meu método para estático.
public class teste {
public static void main(String[] args) { String frase = "Socorram-me, subi no ônibus em Marrocos"; imprimeLetraPorLetraReverso(frase);
}
public void imprimeLetraPorLetra(String texto) { for (int i = 0; i < texto.length(); i++) { System.out.println(texto.charAt(i)); } }
public void imprimeLetraPorLetraReverso(String texto) { for (int i = texto.length() - 1; i >= 0; i--) { System.out.print(texto.charAt(i)); } System.out.println(""); } }