×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Write a programme to accept a word and display the alphabets in an alphabetical order. Write a program to Blinking a Text using Applet.
Write a programme in java to accept a month name and print the month number. - Java
10082    Arnab De    12/06/2018

Write a programme in java to accept a month name and print the month number.

Create a string array by populating the month name. Now accept the month name from user and match it to the array. If match it then print the (index+1) as a month number.

softetechnologies
public class MonthNameToNumber
{
    public static void main(String []args)
    {
        String []months={"January","Februry","March","April","May","June","July","August","September","October","November","December"};
        Scanner sc=new Scanner(System.in);
        System.out.print("Enter month name : ");
        String mon=sc.next();
        for(int i=0;i<months.length;i++)
        {
            if(mon.toLowerCase().equals(months[i].toLowerCase()))
            {
                System.out.println("Your Month number is " + (i+1));
                break;
            }
        }
    }
}
softetechnologies

Output

Enter month name : january
Your Month number is 1
Enter month name : May
Your Month number is 5

Write a programme to accept a word and display the alphabets in an alphabetical order. Write a program to Blinking a Text using Applet.
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Albert Einstein
Few are those who see with their own eyes and feel with their own hearts.
Albert Einstein
2363
63.24
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     46575
25/06/2018     38729
01/01/2018     38407
28/06/2017     36337
02/08/2017     35042
01/08/2017     29315
06/07/2017     29072
15/05/2017     28600
14/07/2017     24430
11/09/2018     23464
softetechnologies