摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace _02异常捕获{ class Program { sta 阅读全文
摘要:
Console.WriteLine("请输入要判断的年份"); int year = Convert.ToInt32(Console.ReadLine()); //年份能够被400整除。(2000) //年份能被4整除,但是不能被100整除。(2008) //逻辑与的优先级高于逻辑或,最好关系运算式 阅读全文