获取或设置季度。
int quarter([int? q]) { if (q != null) { month($M % 3 + (q - 1) * 3); } return ($M / 3).ceil(); }