Computer Applications
Write a Java program to print the name of the day of the week using the switch case statement.
Sample Input:
Enter the day number: 1
Sample Output:
Sunday
Java
Java Conditional Stmts
18 Likes
Answer
import java.util.Scanner;
public class KboatDayOfWeek
{
public static void main(String args[]) {
Scanner in = new Scanner(System.in);
System.out.print("Enter the day number: ");
int n = in.nextInt();
switch (n) {
case 1:
System.out.println("Sunday");
break;
case 2:
System.out.println("Monday");
break;
case 3:
System.out.println("Tuesday");
break;
case 4:
System.out.println("Wednesday");
break;
case 5:
System.out.println("Thursday");
break;
case 6:
System.out.println("Friday");
break;
case 7:
System.out.println("Saturday");
break;
default:
System.out.println("Incorrect day.");
}
}
}
Output

Answered By
6 Likes
Related Questions
Which of the following data type cannot be used with switch case construct?
- int
- char
- String
- double
Ravi runs the following Java code but encounters an error. Identify the statement causing the issue, correct it, and ensure the output is "Hungry".
char h = 'Y'; if (h == 'y' || 'Y') System.out.println("Hungry"); else System.out.println("Not Hungry");
Rewrite the following code using single if statement.
if(code=='g') System.out.println("GREEN"); else if(code=='G') System.out.println("GREEN");
The statement that brings the control back to the calling method is:
- break
- System.exit(0)
- continue
- return