Skip to content

Instantly share code, notes, and snippets.

@HassakuTb
Created January 14, 2020 06:16
Show Gist options
  • Save HassakuTb/32cd7c652e2b62f60ea0e585a03c19e2 to your computer and use it in GitHub Desktop.
Save HassakuTb/32cd7c652e2b62f60ea0e585a03c19e2 to your computer and use it in GitHub Desktop.
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