1 public class AssignTest {2 3 public int h = 0;4 5 public static void main (String [] args) {6 int x = 9;7 int j = 0;8 int y = 8;9 10 j = x + y;11 j += y;12 j -= y;13 j /= y;14 15 AssignTest t = new AssignTest();16 t.run();17 }18 19 private void run(){20 h = 8;21 22 h++;23 }24 }25