|
public static void witchStatment(int num) { |
|
System.out.println("\nEXAMPLE: Switch Statement"); |
|
|
|
switch(num){ //Check the value |
|
case 0: |
|
System.out.println("Case = " + num); // Execute this if 'case' matches the 'value' |
|
break; // Stop the statement |
|
|
|
case 1: |
|
System.out.println("Case = " + num); // Execute this if 'case' matches the 'value' |
|
break; // Stop the statement |
|
|
|
case 2: |
|
System.out.println("Case = " + num); // Execute this if 'case' matches the 'value' |
|
break; // Stop the statement |
|
|
|
case 3: |
|
System.out.println("Case = " + num); // Execute this if 'case' matches the 'value' |
|
break; // Stop the statement |
|
|
|
case 4: |
|
System.out.println("Case = " + num); // Execute this if 'case' matches the 'value' |
|
break; // Stop the statement |
|
|
|
default: |
|
System.out.println("Default = " + num); |
|
} |
|
|
|
} |