×
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
9801    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
Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whol
Albert Einstein
341
58.54
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     44007
01/01/2018     36616
25/06/2018     35926
28/06/2017     34655
02/08/2017     33154
01/08/2017     27625
06/07/2017     27343
15/05/2017     26991
14/07/2017     22634
21/04/2018     21243
softetechnologies