Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame contribute delete
522 Bytes
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");
}
}
}