I have this problem about account record pagination. I have to write the function that describes the total pages needed to contain those account records.
This is the problem:
# Account record quantity to store per page
per_page € R
# Account records to insert in pages
tot_acc € R
# The total pages needed to store the `tot_account` quantity
f(per_page,tot_acc) = tot_page € R = ?
I need to find f(per_page,tot_acc)
.