java計算總頁數

public static void main(String[] args) { int total = 11;//數據總量 int row = 3;//一頁顯示條數 int totalPages;//總頁數 totalPages = total / row; if (total % row != 0){ totalPages ++; } System.out.print
相關文章
相關標籤/搜索