c#第九次作业要求
2018-10-31 本文已影响0人
鲸落_79f1
#作业要求
输入一个年份,判断他是不是闰年
#程序
namespace ConsoleApplication5
{
class Program
{
static void Main(string[] args)
{
//**让用户输入一个年份,判断他是不是闰年
//**年份能够被400整除
//**年份能够被4整除但不能被100整除
Console.WriteLine("请输入一个年份");
int year = Convert.ToInt32(Console.ReadLine());
bool b = (year % 400 == 0) || (year % 4 == 0 && year % 100 != 0);
Console.WriteLine(b);
Console.ReadKey();
}