Advertisement
Guest User

Untitled

a guest
Oct 17th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1. public class HelloWorld
  2. {
  3.   // arguments are passed using the text field below this editor
  4.   public static void main(String[] args)
  5.   {
  6.     int[] a = {1,2,3,4};
  7.     int[] b = {2,3,1,0};
  8.     System.out.println(a[(a=b)[3]]);
  9.   }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement