A leap year occurs when the year number (e.g. 1984 ) is divisible by 4. But there is a special case for years ending in 00: these must be divisible by 400 to be considered a leap year. Thus, 1900 was not a leap year, but 2000 was. Write an if-statement that determines if the integer variable year represents a leap year. (Hint: use the % operator for taking remainders.)

What will be an ideal response?

if (year % 100 == 0 && year % 400 == 0 ||
year % 100 != 0 && year % 4 == 0)
System.out.println(“It’s a leap year.”);

Computer Science & Information Technology

You might also like to view...

What class access modifier is used to indicate that access is limited to another class to which the class belongs?

A. private B. internal C. protected D. public

Computer Science & Information Technology

Describe Dynamic DNS on the Web.

What will be an ideal response?

Computer Science & Information Technology