Q:

Java program to get the current year using the get() method of Calendar class

belongs to collection: Java Date and Time Programs

0

Java program to get the current year using the get() method of Calendar class

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to get the current year using the get() method of the Calendar class is given below. The given program is compiled and executed successfully.

// Java program to get the current year using 
// get() method of Calendar class

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Calendar cal = Calendar.getInstance();

    System.out.println("Current Year: " + cal.get(Calendar.YEAR));
  }
}

Output:

Current Year: 2022

Explanation:

In the above program, we created a class Main that contains a static method main(). The main() method is the entry point for the program, here we created the object of the Calendar class and got the current year using the get() method, and printed the result.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Java Date and Time Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Java program to get the current day number of a mo... >>
<< Java program to print the current date-time using ...