美文网首页
c#第九次作业要求

c#第九次作业要求

作者: 鲸落_79f1 | 来源:发表于2018-10-31 21:57 被阅读0次


    #作业要求

    输入一个年份,判断他是不是闰年

    #程序

    namespace ConsoleApplication5

    {

        class Program

        {

            static void Main(string[] args)

            {

                //**让用户输入一个年份,判断他是不是闰年

                //**年份能够被400整除

                //**年份能够被4整除但不能被100整除

                Console.WriteLine("请输入一个年份");

                int year = Convert.ToInt32(Console.ReadLine());

                bool  b = (year % 400 == 0) || (year % 4 == 0 && year % 100 != 0);

                Console.WriteLine(b);

                Console.ReadKey();

            }

    #效果

    相关文章

      网友评论

          本文标题:c#第九次作业要求

          本文链接:https://www.haomeiwen.com/subject/xfmztqtx.html