2018-10-31(2)
2018-10-31 本文已影响0人
wlp小迷妹
作业要求
代码
...
namespace _2
{
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();
}
}
}
...