File size: 522 Bytes
c574d3a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
public class Switch_case{
public static void main(String[] args) {
int age = 61;
switch(age){
case 18:
System.out.println("you are now adult");
break;
case 23:
System.out.println("You will get job now");
break;
case 60:
System.out.println("You will now retired");
break;
default:
System.out.println("Enjoy your life");
}
}
}
|