Determine If Year Is Leap Year Java Example

/*
        Determine If Year Is Leap Year Java Example
        This Determine If Year Is Leap Year Java Example shows how to determine whether the given year is a leap year or not.
*/

public class DetermineLeapYearExample {

        public static void main(String[] args) {
             
                //year we want to check
                int year = 2004;
             
                //if year is divisible by 4, it is a leap year
             
                if((year % 400 == 0) || ((year % 4 == 0) && (year % 100 != 0)))
                        System.out.println("Year " + year + " is a leap year");
                else
                        System.out.println("Year " + year + " is not a leap year");
        }
}

/*
The output of the example would be
The year 2004 is a leap year
*/

Comments

Popular posts from this blog

মোবাইল ফোন হাত থেকে পড়লে কত সেকেন্ডের মধ্যে তুলে ফেললে ডিসপ্লে ভাঙবে না?

বাংলাদেশে Google Pay (GPay) নিয়ে বাস্তব অভিজ্ঞতা

What if... "Oppenheimer didn’t build the bomb” – A Butterfly Effect Narrative (2025 Alternate Reality)