Convert Numbers into Months Program in java

 

Question:

Ram is very weak in converting the numbers into months. But his friends often tease him by asking him to do that. To solve his problem a close friend of him, suggested meeting IIT students, who were very good at programming. Help ram to resolve his problem.

Note : 
Range of inputs is 1 to 12.
If the input given is beyond the range display error message as given in the sample output.

Sample Input 1:

2

Sample Output 1:

February

Sample Input 2:

15

Sample Output 2:

No month for the number 15

CODE:

import java.util.*;
public class NumToMonth
{
    public static void main (String[] args) {
        Scanner sc=new Scanner(System.in);
        int n=sc.nextInt();
        String mon[]={"January", "February", "March","April", "May", "June", "July", "August", "September", "October", "November", "December"};
        if(n>12||n<1)
        {
            System.out.println("No month for the number "+n);
        }
        else
        {
            System.out.println(mon[n-1]);
        }
    }
}
Previous
Next Post »