Console.WriteLine("请输入年份");
int year = Convert.ToInt32(Console.ReadLine());
bool b = year % 400 == 0 || year % 4 == 0 && year % 100 != 0;
Console.WriteLine(b);
Console.ReadKey();
2018-10-31作业二 2018-10-31作业二Console.WriteLine("请输入年份");
int year = Convert.ToInt32(Console.ReadLine());
bool b = year % 400 == 0 || year % 4 == 0 && year % 100 != 0;
Console.WriteLine(b);
Console.ReadKey();
2018-10-31作业二 2018-10-31作业二本文标题:2018-10-31作业二
本文链接:https://www.haomeiwen.com/subject/uljatqtx.html
网友评论