int day = 4;
switch (day) {
case 6:
System.out.println("Today is Saturday");
break;
case 7:
System.out.println("Today is Sunday");
break;
default:
System.out.println("Looking forward to the Weekend");
}
// Outputs "Looking forward to the Weekend"
Creating Java Main Method Code Example - java
Find Duplicates In Arraylist Java Code Example - java
Java Creat A Folder Code Example - java