Online cryptocurrency casino jatekok ingyen

  1. Online Pronostici Bundesliga Oggi: While golf, tennis and other international sports also feature, the most popular legal sports in Melbourne include.
  2. Siti Hockey Scommesse Con Bonus - Also, the casino is based outside of India.
  3. Metodi Per Scommettere Sul Tennis: FREE BET is limited to one per person, family, household address, email address, telephone number, same payment account number, shared computer (e.g.

3D crypto casino games for the pc

Android Scommesse Značenje
The casino takes good care of safety and security.
Quote Vincitore Sanremo 2024
Don't miss out on exciting offers that can take your play to the next level.
We also have some very exciting news about a brand-new website called Casinolooter.

For amusement only slot machines

Online Pronostici Bundesliga Veggente
Whether you would like the visit to be on your desktop or mobile desktop, tablet, or smartphone, you will be able to stay as long as you desire.
Scommesse Hockey Online Bonus Senza Deposito
While for some players (especially new players) interacting with a complete stranger online can seem daunting, for others this comes naturally.
Scommesse Digitali F1 2024

How to check if a g…
 
Notifications
Clear all

How to check if a given year is a leap year in Java?

1 Posts
2 Users
0 Likes
638 Views
0
Topic starter

How to check if a given year is a leap year in Java?

1 Answer
0

In Java, you can check if a given year is a leap year using the following code:

This code uses the standard rule that a year is a leap year if it is divisible by 4, except for years that are divisible by 100 but not divisible by 400.

To use this method, you can simply call it with the year you want to check as the argument, like this:

public static boolean isLeapYear(int year) {
    if (year % 4 == 0) {
        if (year % 100 == 0) {
            if (year % 400 == 0) {
                return true;
            }
            else {
                return false;
            }
        }
        else {
            return true;
        }
    }
    else {
        return false;
    }
}

int year = 2024;
if (isLeapYear(year)) {
    System.out.println(year + " is a leap year");
}
else {
    System.out.println(year + " is not a leap year");
}
Share: