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

C#第四次作业2

作者: 亻尔亻也 | 来源:发表于2018-10-31 15:10 被阅读0次

    完成以下要求:

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

                string year = Console.ReadLine();

                int nianf = Convert.ToInt32(year);

                bool a = nianf % 400 == 0 || nianf % 4 == 0 && nianf % 100 != 0;

                Console.WriteLine("是否闰年?{0}", a);

                Console.ReadKey();

    相关文章

      网友评论

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

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