Program Convert Measurements:
Write a program converts measurements in feet and inches into centimeters using
the formula that:
• 1 inch is equal to 2.54 centimeters
• 1 foot equal to 12 inches.
const double CENTIMETERS_PER_INCH = 2.54;
const int INCHES_PER_FOOT = 12;
int feet, inches;
int totalInches;
double centimeter;