int i; // 선언 i = 10; // 초기화 System.out.println("i=" + i);
int j = 20; // 변수 선언+초기화 System.out.println("j=" + j);