Advertisement
Guest User

Untitled

a guest
Jan 18th, 2018
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public class zad9 {
  2. public static String rewrite (String in){
  3.  
  4. if (in.length()<= 1){
  5. return in;
  6. }
  7.  
  8. return rewrite (in.substring(1)) + in.charAt(0);
  9. }
  10.  
  11. public static void main(String[] args) {
  12. String q = "4321";
  13.  
  14. System.out.println(rewrite(q));
  15. }
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement