// height2.cpp // convert a height given in inches to feet and inches # include using namespace std; int main () { int height = 64; // a height in inches int feet; // the number of feet int inches; // the remaining number of inches //Convert feet = height / 12; inches = height % 12; //Print results cout << height << " inches is "; cout << feet << " feet and " << inches << " inches."; return 0; }