Guest User

Untitled

a guest
Oct 12th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public class TrabajoClase {
  2. public static void main(String[] args) {
  3. System.out.println(convertir("123"));
  4. }
  5. public static String convertir(String s) {
  6. String num = "";
  7. for (int i = s.length() - 1; i >= 0; i--) {
  8. num += s.charAt(i);
  9. }return num;
  10.  
  11.  
  12. }
  13. }
Add Comment
Please, Sign In to add comment