Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

Write a C++ program that asks for the user's height, weight and age, and then computes clothing sizes according to the following formulas: Hat size

Write a C++ program that asks for the user's height, weight and age, and then computes clothing sizes

according to the following formulas:

Hat size = weight in pounds divided by height in inches and all that multiplied by 2.9.

Jacket size (chest in inches) = height times weight divided by 288 and then adjusted by

adding 1/8 of an inch for each 10 years over age 30. (Note that the adjustment only takes

place after a full 10 years. So, there is no adjustment for ages 30 through 39, but 1/8 of an

inch is added for age 40.)

Waist in inches = weight divided by 5.7 and then adjusted by adding 1/10 of an inch for

each 2 years over age 28. (Note that the adjustment only takes place after a full 2 years.

So, there is no adjustment for age 29, but 1/10 of an inch is added for age 30.)

Use separate functions for each calculation. Output answers in decimal form to the nearest tenth

of an inch. Your program should allow the user to repeat this calculation as often as the user

wishes.

Sample Output of the program:

Please enter your height in inches: 70

Enter your weight in pounds: 190

Enter your age in years: 49

Your Hat Size is 7.9.

Your Jacket Size is 46.3.

Your Waist Size is 34.3.

Would you like to use the program again (Y or N)? n

---end of program---

Test it with different input values to make sure it works properly.

Drop one file which has the copy of code with comment statements and screenshot of output.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions