public class SyntaxExample7 { public static void main (String[] argv) { // Declare multiple variables of the same type. int i = 5, j = 6, k; k = 7; System.out.println (i); System.out.println (j); System.out.println (k); } }