Kindle readers have to store information about each book that a user is reading. The two main items of information are the number of pages in the book, and the current page number the reader has reached. Write a class to create objects that store this information, and work with this simple driver class. Your class must have: Here's what a sample run should look like (with the keyboard input shown in italics) ...
How many pages in the book : 33
Initially                  : Page   1 of  33.
A bit later                : Page   5 of  33.
After skipping 27 pages    : Page  32 of  33.
You were on                : Page  32 of  33.
Turning 8 pages would take you past the last page.
You are now on             : Page  33 of  33. 

You must ...

Answer