You are viewing a single comment's thread. Return to all comments →
C#
public static int pageCount(int n, int p) { var totalPages = n%2 == 0 ? n+1 : n; return Math.Min(p/2, ((totalPages - p)/2)); }
Seems like cookies are disabled on this browser, please enable them to open this website
Drawing Book
You are viewing a single comment's thread. Return to all comments →
C#