1 26 27 package net.sourceforge.groboutils.codecoverage.v2.compiler.testcode; 28 29 30 31 38 public class Case2 39 { 40 static final int a = 1; 41 static final int b = 2; 42 static final int c = 3; 43 static final int d = 4; 44 static int j = -1; 45 public static void main( String [] args ) 46 { 47 String res = null; 48 switch (j) 49 { 50 case 0: 51 res = "0"; 52 break; 53 case a: 54 res = "1"; 55 break; 56 case b: 57 res = null; 58 break; 59 case c: 60 res = "3"; 61 break; 62 case d: 63 res = "4"; 64 break; 65 default: 66 Passed.passed( "Case2" ); 67 } 68 System.out.println(res); 69 } 70 } 71 72 | Popular Tags |