Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,907 questions

51,839 answers

573 users

How to get the next N leap years in Java

1 Answer

0 votes
public class MyClass {
    public static boolean isLearYear(int year) {
        return year % 4 == 0 && (year % 100 != 0 || year % 400 == 0);
    }
    public static void main(String args[]) {
        int year = 2021, count = 0, N = 12;
 
        while (count < N) {
            if (isLearYear(year)) {
                count++;
                System.out.println(year);
            }
            year++;
        }
    }
}
  
  
  
  
/*
run:
  
2024
2028
2032
2036
2040
2044
2048
2052
2056
2060
2064
2068
  
*/

 



answered Mar 26, 2021 by avibootz

Related questions

1 answer 569 views
569 views asked Mar 26, 2021 by avibootz
2 answers 168 views
168 views asked Mar 26, 2021 by avibootz
1 answer 66 views
66 views asked Jan 4, 2025 by avibootz
1 answer 74 views
74 views asked Jan 4, 2025 by avibootz
1 answer 93 views
93 views asked Oct 18, 2024 by avibootz
1 answer 91 views
...