M
moutocean
Unregistered / Unconfirmed
GUEST, unregistred user!
class switch_exam{
public static void main(int args[] ){
int x=3;
switch(x){
case 2:
case 3:
System.out.println("x=2 or 3");
break;
}
}
}
public static void main(int args[] ){
int x=3;
switch(x){
case 2:
case 3:
System.out.println("x=2 or 3");
break;
}
}
}