Here it is...
Design, write, and compile a program to determine if the digits in a three-digit number are all odd, even, or mixed odd and even. Your program should prompt the user to input a three-digit number and echo-print the number. If the digits in the number are all odd, write "This number contains all odd digits." If the digits are all even, write "This number contains all even digits." If the number contains both odd and even digits, write "This number contains both odd and even digits." Use integer division and modulus to access the digits in the number.
If anyone could help and design such a program for me, I'de be a billion times thankful!
Thank you!