1 public class DefUse {2 3 public static void main(String [] args){4 int i;5 int j;6 7 i = 9;8 j = i;9 10 }11 }12