private static int computeTotalPageNum(int total, int size) {
return (total - 1) / size + 1;
}
private static int computeTotalPageNum(int total, int size) {
return (total + size - 1) / size;
}
private static int computeTotalPageNum(int total, int size) {
return (total - 1) / size + 1;
}
private static int computeTotalPageNum(int total, int size) {
return (total + size - 1) / size;
}