Write a program that asks the user to enter a three digit number and then proceeds to print the number with its digits reversed
Hint: for this version, you can use a String variable and the charAt method
For example:
Input Result
381
Enter a 3-digit number: 381 reversed is 183.
12
Enter a 3-digit number: incorrect input.
Answer: (penalty regime: 10, 20, ... %) 1 I