假设能够被4整除的年份是闰年,其他年份是平年。右边的程序是判断平年或闰年的代码,请填写第 12 行。
using System; using System.Collections.Generic; using System.Text; namespace Test { class Program { static void Main(string[] args) { int year = 2015;//年份 //请填写代码 Console.WriteLine("今年是{0}",text); } } }