class Main {
public static void main(String[] args) {
switch (new Integer(4)) {
case 4:
System.out.println("4");
break;
default:
System.out.println("default");
}
}
}
Login in to like
Login in to comment