public int GetMonthOfQuarter(int month) { int num = month % 3; if (num == 0) { return 3; } return num; }
有更好的算法欢迎各位留言拍砖 转载请注明出处