1 public class CaseWithAllNegLabels { 2 public static void main(String [] args) {3 int j = -10;4 switch(j){5 case -9: j++;6 case -8: j++;7 case -7: j--;8 case -6: j--;9 }10 }11 }12