Finish the following program, which is designed to reverse a 5 digit number (ie, 12468 becomes 86421) Note: You CANNOT use an array!
#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.