This is how it works:
- The
switch expression is evaluated once.
- The value of the expression is compared with the value of each case.
- If there is a match, the associated block of code is executed.
- The
break and default keywords are optional.
|
|
04 | System.out.println( "Monday" ); |
07 | System.out.println( "Tuesday" ); |
10 | System.out.println( "Wednesday" ); |
13 | System.out.println( "Thursday" ); |
16 | System.out.println( "Friday" ); |
19 | System.out.println( "Saturday" ); |
22 | System.out.println( "Sunday" ); |
|
|