I need Help,
How do you separate a number into its individual digits using
the division and modulus operator??
For Example:
if a user enters a string of number say:
thanks in advanced.Code:
cout << "Enter 5 numbers ";
cin >> numbers;
how do you separate each one???
say if the user enters 54345
how do you separate the five from the rest, then the four...etc..
