Write a program in Centimeterstofeet.java that converts centimeters to feet and inches. Prompt the user for the number of centimeters (allow any real value) and print the number of whole feet and remaining inches.
Use constants with these exact names in your program: CENTIMETERS_PER_INCH = 2.54, INCHES_PER_FOOT = 12.
Hint: It's not strictly necessary, but you may find it useful to use the remainder operator in your calculations (% is also sometimes called the "modulo" operator).
Here is an example output from running the program when the user entered the value 193.5 centimeters (that's how tall Dr. Leeper is). To pass the automated test, make your program output match this pattern, including punctuation and spacing:
"This program converts centimeters to feet and inches. Enter the number of centimeters: 193. That's 6 feet, 4.724409448818897 inches!