Display a height chart that shows feet and inches. Going from 1 inch
up to 2 feet. Only list feet starting at 1 foot, and at each whole foot
do not list inches. Also use the correct grammar of inch, inches, foot, 
feet. Note the comma between feet and inches. The . . . are for the 
inbetween values, do not print . print values.

Such as:

Height:

1 inch
2 inches
.
.
.
1 foot
1 foot, 1 inch
1 foot, 2 inches
.
.
.
2 feet

You must use a single for-loop for this assignment. Use if statements to 
print the proper values.