// Convert inches to centimeters, second draft #include using namespace std; int main() { int inches; double cm; // centimeters cout<<"Enter the number of inches:"; //prompt cin>>inches; // sends from input to variable inches cm = inches * 2.54; cout<