public class MainClass {
public void soundOff(int x) {
switch (x) {
case 1:
System.out.print("One ");
case 2:
System.out.print("Two ");
break;
case 3:
System.out.print("Three ");
default:
System.out.print("Do What?");
}
}
}
A. Input = 1, Output = "One"
B. Input = 0, Output = "One Two"
C. Input = 3, Output = "Three Do What?"
D. Input = 4, Output = "Do What?"
|