I want to know what will be best to use if I have something like chapters with pages from-to - example:
Chapter 1, 0-10;
Chapter 2, 11-33;
Chapter 3, 54-90;
...
Now I want to get the chapter based on the on a page number, in example I input 60
, and it should return Chapter 3
.
How can I do this in JAVA?