I have an array and I want to divide them into page according to preset page size.
This is how I do:
private int CalcPagesCount() { int totalPage = imagesFound.Length / PageSize; // add the last page, ugly if (imagesFound.Length % PageSize != 0) totalPage++; return totalPage; }
I feel the calculation is not the simplest (I am poor in math), can you give one simpler calculation formula?
To calculate the page count for a 5.5″ × 8.5″ book: 10 pt type – divide your word count by 475. 11 pt type – divide your word count by 425. 12 pt type – divide your word count by 350.
php $pages = get_posts('category_name=news'); ?> divide that number by 1 and give how many times 1 goes into it. thus giving as many page numbers as needed.
Force it to round up:
totalPage = (imagesFound.Length + PageSize - 1) / PageSize;
Or use floating point math:
totalPage = (int) Math.Ceiling((double) imagesFound.Length / PageSize);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With