public class SwitchExample1
{
public static void main(String args[])
{
// SwitchExample1
int choice = 1;
switch (choice)
{
case 0:
System.out.println("Zero");
break;
case 1:
System.out.println("One");
break;
case 2:
System.out.println("Two");
break;
default:
System.out.println("Unknown");
}
}
}
One
--- Output Ends ---
- javac SwitchExample1.java
- java SwitchExample1