(int)(rows / rowsCount):取(rows / rowsCount)商的整数部分,再减一。
...这你都不知道?(int)(rows / rowsCount)将rows / rowsCount得到的商转为整数,再将该整数减1.
取整减一一般用作数组下标,因为C中下标是从0开始的。