fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. String s = "TEXTO";
  13. String textoinverso = "";
  14.  
  15. for(int x=0; x<s.length(); x++){
  16. textoinverso += s.substring(s.length() - x - 1, 1);
  17. }
  18. System.out.println(textoinverso);
  19. }
  20. }
Runtime error #stdin #stdout #stderr 0.06s 32592KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: begin 4, end 1, length 5
	at java.base/java.lang.String.checkBoundsBeginEnd(String.java:3410)
	at java.base/java.lang.String.substring(String.java:1883)
	at Ideone.main(Main.java:16)