Contact: aviboots(AT)netvision.net.il
39,943 questions
51,883 answers
573 users
public class MyClass { public static void main(String args[]) { int x = 14, y = 14, z = 14; System.out.println("x = " + x + " y = " + y + " z = " + z); } } /* run: x = 14 y = 14 z = 14 */
public class MyClass { public static void main(String args[]) { int x = 3, y = 3, z = 3; x = y = z = 14; System.out.println("x = " + x + " y = " + y + " z = " + z); } } /* run: x = 14 y = 14 z = 14 */
public class MyClass { public static void main(String args[]) { int x, y, z; x = y = z = 14; System.out.println("x = " + x + " y = " + y + " z = " + z); } } /* run: x = 14 y = 14 z = 14 */