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"); } } }