Do Chapter 1 - Lab Exercise 3 from the lab manual. Here it is, after this, please buy the lab manual!
//Chapter 1 of C++ How to Program
// digits.cc
//
#include <iostream>
using std::cout;
using std::cin;
using std::endl;
int main()
{
int number;
cout <<"Enter a five-digit number: ";
cin >>number;
// Write a statement to print the leftmost digit of the 5 digit number
// Write a statement that changes number from 5 digits to 4 digits
// Write a statement to print the leftmost digit of the 4 digit number
// Write a statement that changes number from 4 digits to 3 digits
// Write a statement to print the left most digit of the 3 digit number
// Write a statement that changes number from 3 digits to 2 digits
// Write a statement to print the left most digit of the 2 digit number
// Write a statement that changes number from 2 digit to 1 digit
cout << number << endl;
return 0;
} //end main
If you're really good, you will only need 2 statements and a while loop to do the above part.