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 paramstr = new String("H*H6\u000eL\u0004H4");
  13. String str = new String("");
  14. for (int i = 0; i < paramstr.length(); i++) {
  15. str = (char)(paramstr.charAt(i) ^ 0x7C) + str;
  16. System.out.println(str);
  17. }
  18.  
  19. }
  20. }
Success #stdin #stdout 0.05s 4386816KB
stdin
Standard input is empty
stdout
4
V4
4V4
J4V4
rJ4V4
0rJ4V4
x0rJ4V4
4x0rJ4V4
H4x0rJ4V4