C#判断年份是否为闰年

Posted 11forevercute

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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)
       
            int year;
            Console.WriteLine("请输入年份");
                year = Convert.ToInt32(Console.ReadLine());
            if((year%400==0)||(year%4==0&&year%100!=0))
                Console.WriteLine("It is leap year!");
            else
                Console.WriteLine("Tt is not a leap year!");
       
   

以上是关于C#判断年份是否为闰年的主要内容,如果未能解决你的问题,请参考以下文章

怎样用JAVA写判断一个年份是否闰年的程序?

判断指定年份是否为闰年

编写一个C#控制台应用程序,从键盘输入年份,判断此年份是否闰年。

判断输入的年份是否为闰年

编写一个C#控制台应用程序,使之能够判断制定年份是不是为闰年

判断给到的年份是否为闰年