Sunday, February 25, 2018

Java program : Enum in Switch

class EnumInSwitch

    enum Day{ SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY} 
   
    public static void main(String args[])
    { 
        Day day=Day.MONDAY; 
 
        switch(day)
        { 
        case SUNDAY:  
        System.out.println("sunday"); 
        break; 
        case MONDAY:  
        System.out.println("monday"); 
        break; 
        default: 
        System.out.println("other day");
        }
    } 
}

Thanks
Happy programming!

No comments:

Post a Comment

Class X IT notes: Part A, Unit 1, Session 1.

 IT notes class 10 Unit 1: COMMUNICATION SKILLS Session 1: METHODS & TYPES OF COMMUNICATION Q1. What is communication? Communication is ...