Computer Applications
Write a program that reads a month number and displays it in words.
Java
Java Conditional Stmts
12 Likes
Answer
import java.util.Scanner;
public class KboatMonthInWords
{
public static void main(String args[]) {
Scanner in = new Scanner(System.in);
System.out.print("Enter month number: ");
int n = in.nextInt();
switch(n) {
case 1:
System.out.println("January");
break;
case 2:
System.out.println("Feburary");
break;
case 3:
System.out.println("March");
break;
case 4:
System.out.println("April");
break;
case 5:
System.out.println("May");
break;
case 6:
System.out.println("June");
break;
case 7:
System.out.println("July");
break;
case 8:
System.out.println("August");
break;
case 9:
System.out.println("September");
break;
case 10:
System.out.println("October");
break;
case 11:
System.out.println("November");
break;
case 12:
System.out.println("December");
break;
default:
System.out.println("Wrong month number");
break;
}
}
}
Output
Answered By
6 Likes
Related Questions
Admission in a professional course is subject to the following criteria:
- Marks in Physics >= 70
- Marks in Chemistry >= 60
- Marks in Mathematics >= 70
- Total marks in all subjects >= 225
Or
Total marks in Physics and Mathematics >= 150
Write a program in Java to accept marks in these 3 subjects (Physics, Chemistry, and Mathematics) and display if a candidate is eligible.
Write a program in Java to read three integers and display them in descending order.
Using the ternary operator, create a program to find the largest of three numbers.
Using the switch statement in Java, write a program to display the name of the city according to the user's choice.
D — Delhi, M — Mumbai, K — Kolkata, C — Chennai