#include using namespace std; int main() { float feet, inches, cm; cout << "Enter the number of feet:" << endl; cin >> feet; cout << "Enter the number of inches:" << endl; cin >> inches; inches = inches + (12 * feet); cm = inches * 2.54; cout << "That is " << cm << "cm" << endl; return (0); }