// Inches to Feet and Inches // J. Joy #include using namespace std; main() { int inches, feet, inch; cout<<"Enter the number of inches:"; cin>>inches; //assume user enters 68 //We want to print 68" = 5'8" feet = inches / 12; // feet is 5 inch = inches % 12; // inch is 8 cout<