string text = year % 4 == 0 ? "闰年" : "平年";
这段代码应该怎样理解::
判断year的值被4除后余数是否为零,若是,把闰年赋值给text,若不是,把平年赋值给text。