Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Write a program that asks for the user's height, weight, and age, and then computes clothing sizes according to the 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 functions for each calculation. Your program should allow the user to repeat this calculation as often as the user wishes.

Input Notes:Height, weight and age are all to be entered as integers, separated by white space, after the main prompt. After the continuation prompt, the program reads in a character and repeats its actions if the character is a Y or a y and otherwise terminates.

Output Notes (Prompts and Labels): The program's main (and first) prompt is:
      Give me your height in inches, weight in pounds, and age in years
      and I will give you your hat size, jacket size(inches at chest)
      and your waist size in inches.
After the three integers are read, the program prints the computed hat, jacket and waist sizes preceded respectively by the labels: "hat size = 1", "jacket `size = 1", and "waist size = 1". Each number that is output is displayed with two digits to the right of the decimal point.

After the computed values are displayed, the program skips a line and prints the continuation prompt: "enter Y or y to repeat, any other character ends.".

Expert Answer 

Step by Step Solution

3.40 Rating (178 Votes )

There are 3 Steps involved in it

Step: 1

import javautilScanner public class Clothes public static void mainString args int heightweightage f... blur-text-image

Get Instant Access to Expert-Tailored Solutions

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

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

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

Get Started

Recommended Textbook for

Modern Operating Systems

Authors: Andrew S. Tanenbaum, Herbert Bos

4th edition

013359162X, 978-0133591620

More Books

Students also viewed these Programming questions