w3resource

Java: Get the information of current or given month


26. Month Info

Write a Java program to get the information of the current/given month.

Sample format :

Integer value of the current month: 2                                                                         
Length of the month: 28                                                                                       
Maximum length of the month: 29                                                                               
First month of the Quarter: JANUARY

Sample Solution:

Java Code:

import java.time.*;

public class DateParseFormatExercise26 {

	public static void main(String[] args) {
	
   // information about the month
      LocalDate ldt = LocalDate.of(2016, Month.FEBRUARY, 10);
      Month mn = ldt.getMonth(); // FEBRUARY
      int mnIntValue = mn.getValue(); // 2
      int minLength = mn.minLength(); // 28
      int maxLength = mn.maxLength(); // 29
      Month firstMonthOfQuarter = mn.firstMonthOfQuarter(); // JANUARY
      System.out.println("\nInteger value of the current month: " + mnIntValue);
      System.out.println("Length of the month: " + minLength);
      System.out.println("Maximum length of the month: " + maxLength); 
      System.out.println("First month of the Quarter: " + firstMonthOfQuarter+"\n"); 
      }
}

Sample Output:

Integer value of the current month: 2                                                                         
Length of the month: 28                                                                                       
Maximum length of the month: 29                                                                               
First month of the Quarter: JANUARY

Pictorial Presentation:

Java Exercises: Java DateTime, Calendar Exercises - Get the information of current or given month.


Flowchart:

Flowchart: Java DateTime, Calendar Exercises - Get the information of current or given month


For more Practice: Solve these Related Problems:

  • Write a Java program to display details of the current month, including its length and the first month of its quarter.
  • Write a Java program to extract and show month information such as numeric value, total days, and maximum possible days.
  • Write a Java program to get the current month details and compare them with another month's details.
  • Write a Java program to display the current month’s integer value, length, and its quarter’s starting month.

Go to:


PREV : Year Info.
NEXT : Time Info.

Java Code Editor:

Improve this sample solution and post your code through Disqus

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.