20181031

作者: KousakaChihaya | 来源:发表于2019-01-02 08:45 被阅读0次

    #代码 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { Console.WriteLine("请输入年份"); int year = Convert.ToInt32(Console.ReadLine()); bool b =year%400==0 || year%4==0 && year%100!=0; Console.WriteLine(b); Console.ReadKey(); } } } #效果

    相关文章

      网友评论

          本文标题:20181031

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