Answers for "which of the following statement about switch statement in java is correct"

121

java switch

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"
Posted by: Guest on March-11-2020

Code answers related to "which of the following statement about switch statement in java is correct"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language