第四节课的第二个作业

图片发自App


#Console.WriteLine("请输入年份"); int year =Convert .ToInt32 (Console .ReadLine ()); bool b = year % 400 == 0 || year % 4 == 0 && year % 100 != 0; Console.WriteLine(b ); Console.ReadKey();

你可能感兴趣的:(第四节课的第二个作业)