Contact: aviboots(AT)netvision.net.il
39,971 questions
51,913 answers
573 users
class MultipleVariablesOneLineOneValue { public static void main(String[] args) { int a, b, c, d = c = b = a = 178; System.out.println(a + " " + b + " " + c + " " + d); } } /* run: 178 178 178 178 */