c# 判断年份是否为闰年

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 判断闰年
{
    class Program
    {
        static void Main(string[] args)
        {
           
            Console.WriteLine("晴输入年份year:");
            int year = Convert.ToInt32(Console.ReadLine());

            if (year % 400 == 0 || (year % 4 == 0 && year % 100 != 0))
            {
                Console.WriteLine("{0}是闰年", year);
            }
            else
            {
                Console.WriteLine("{0}不是闰年", year);
            }



                
        }
    }
}

 条件判断也可以如下写

if (year % 400 == 0 || (year % 4 == 0 && !(year % 100== 0)))
            {
                Console.WriteLine("{0}是闰年", year);
            }
            else
            {
                Console.WriteLine("{0}不是闰年", year);
            }

 

 

你可能感兴趣的:(c#)