Answered step by step
Verified Expert Solution
Question
1 Approved Answer
JAVA - Write a program that calculates and prints the BMI, BFP and BFP zone for a person; the program allows user to enter values
JAVA - Write a program that calculates and prints the BMI, BFP and BFP zone for a person; the program allows user to enter values for the name, weight, height, gender, age of the person,
The body mass index (BMI) is a measure of relative weight based on height and weight. The body fat percentage (BFP) of a human or other living being is the total mass of fat divided by total body mass, multiplied by 100; body fat includes essential body fat and storage body fat. Essential body fat is necessary to maintain life and reproductive functions. Write a program that calculates and prints the BMI, BFP and BFP zone for a person; the program allows user to enter values for the name, weight, height, gender, age of the person, The formula for BMI is: BMI = weight in pounds * 703 / (height in inches * height in inches) The formula for BFP is: Child body fat percentage = 1.51 * BMI - 0.70*age - 3.6* gender +1.4 Adult body fat percentage = 1.20 * BMI +0.23 * age - 10.8 *gender - 5.4 where gender is 0 for females and 1 for males. If the user is 15 years old or younger, he/she will be considered as Child in calculation. If the user is older than 15, he/she will be considered as Adult in calculation. Implement the following steps: a. Prompts user to enter name (a String). (5 points) b. Prompts user to enter weight and height (a Double) (10 points) Prompts user to enter gender (a int or String). (10 points) d. Prompts user to enter age (a int). (10 points) e. Calculate BMI (a double). (10 points) Calculate the BFP using the given formula and defined variables (arithmetic expressions). (25 points) g. Determine the BFP zone based on the following table. (if-elseif statement) (25 points) f. Description Women Men Low Body Fat Risk 40% >30% h. Print out name, age, gender, BMI, BFP and BFP zone of the person. (5 points) Sample output: Welcome, David You are 21 years old You are a Male adult Your BMI is 24.5 Your BFP is 18.03% You are "LeanStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started