美文网首页
C#第四次作业02

C#第四次作业02

作者: 谭叁叁 | 来源:发表于2018-10-31 15:17 被阅读0次

    #作业要求

    让用户输入一个年份,如果是润年,则输出true,如果不是,则输出false.

    #程序

    namespace ConsoleApplication1

    {

        class Program

        {

            static void Main(string[] args)

            {

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

                string str_year=Console.ReadLine();

               

                int year=Convert.ToInt32(str_year);

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

                Console.WriteLine("你输入的年份是{0},此年份是不是闰年{1}",year,b);

                Console.ReadKey();

            }

        }

    }

    #效果

    C#第四次作业02

    相关文章

      网友评论

          本文标题:C#第四次作业02

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