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,911 questions

51,843 answers

573 users

How to check leap year in C#

3 Answers

0 votes
using System;

public class CheckLeapYear_CSharp
{
	public static void Main(string[] args)
	{
		try {
            int year = 2016;
 
            if (year % 400 == 0)
                Console.WriteLine("{0} is a leap year.", year);
            else if (year % 100 == 0)
                     Console.WriteLine("{0} is not a leap year.", year);
                 else if (year % 4 == 0)
                          Console.WriteLine("{0} is a leap year.", year);
                      else
                          Console.WriteLine("{0} is not a leap year.", year);
        }
        catch (Exception ex) {
            Console.WriteLine(ex.Message);
        }
	}
}



/*
run:
 
2016 is a leap year.
 
*/


answered May 23, 2015 by avibootz
edited Sep 26, 2024 by avibootz
0 votes
using System;

public class CheckLeapYear_CSharp
{
	static bool isLeapYear(int year) {
        if (year % 400 == 0)
            return true;
        else if (year % 100 == 0)
                 return false;
        else if (year % 4 == 0)
                 return true;
 
        return false;
    }
        
	public static void Main(string[] args)
	{
		try {
            int[] years = {2000, 2400, 1800, 1900, 2100, 2200, 2300, 2500,
                           2008, 2012, 2016, 2020, 2024, 2048, 2032};
 
            foreach (int yr in years) {
                if (isLeapYear(yr))
                    Console.WriteLine("{0} is a leap year.", yr);
                else
                    Console.WriteLine("{0} is not a leap year.", yr);
            }
        }
        catch (Exception ex) {
            Console.WriteLine(ex.Message);
        }
    }
}



/*
run:
 
2000 is a leap year.
2400 is a leap year.
1800 is not a leap year.
1900 is not a leap year.
2100 is not a leap year.
2200 is not a leap year.
2300 is not a leap year.
2500 is not a leap year.
2008 is a leap year.
2012 is a leap year.
2016 is a leap year.
2020 is a leap year.
2024 is a leap year.
2048 is a leap year.
2032 is a leap year.
 
*/


answered May 23, 2015 by avibootz
edited Sep 26, 2024 by avibootz
0 votes
using System;

public class CheckLeapYear_CSharp
{
	public static void Main(string[] args)
	{
		int year = 2016;
		
		try {
            if (DateTime.IsLeapYear(year))
                Console.WriteLine("{0} is a leap year.", year);
            else
                Console.WriteLine("{0} is not a leap year.", year);
        }
        catch (Exception ex) {
            Console.WriteLine(ex.Message);
        }
    }
}



/*
run:
 
2016 is a leap year.
 
*/

 



answered Sep 26, 2024 by avibootz

Related questions

3 answers 159 views
159 views asked Oct 16, 2022 by avibootz
1 answer 120 views
1 answer 85 views
85 views asked Dec 12, 2024 by avibootz
1 answer 84 views
84 views asked Dec 12, 2024 by avibootz
1 answer 78 views
1 answer 84 views
84 views asked Dec 12, 2024 by avibootz
1 answer 87 views
87 views asked Sep 26, 2024 by avibootz
...