Created
January 14, 2020 06:16
-
-
Save HassakuTb/32cd7c652e2b62f60ea0e585a03c19e2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int countParPage = 10; // 1ぺーじあたりのアイテム数 | |
int allItems = 100; // 全アイテム数 | |
// ページ数 | |
int PageCount => (allItems + countParPage - 1) / countParPage; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment