class SwitchTest2 { static int tes(int t){ int res =9; switch(t){ case 2: default: case 9: case 11: res=42; break; } return res; } public static void main(String args[]){ System.out.println(tes(-6)); System.out.println(tes(6)); System.out.println(tes(2)); } }