Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

BMI Calculator (Java in-class assignment 10 pts.)In this assignment you will write a Java program that will calculate a persons body mass index (BMI). Follow

BMI Calculator (Java in-class assignment 10 pts.)In this assignment you will write a Java program that will calculate a persons body mass index (BMI). Follow the requirements below, and good luck! Use ZyBooks Coding window to write your code (save your code often to Word). User input will be weight in pounds and height in inches. Prompt user for weight and height until a q is entered. Use variables to store all input and the results of the calculationo Weight and height are whole numbers, but the results of the formula can produce a decimal value. What data type should you use to store the results? Use the formula below for your calculationso BMI = (Weight (LBS) x 703) (Height * Height) Output the results to the screen to two (2) decimal places Be sure to include comments in your code and practice good self-documentation by giving descriptive names to your variables Run the program and debug your code. Copy the completed code to a word document and submit via Canvas for creditHint: to enter a single character into a variable, use this code: quitCmd = scnr.next().charAt(0);Hint: use printf method to output BMI to two decimal places. INPUT: 220 68 a 145 72 a 190 70 q

Step by Step Solution

There are 3 Steps involved in it

Step: 1

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

Practical Azure SQL Database For Modern Developers Building Applications In The Microsoft Cloud

Authors: Davide Mauri, Silvano Coriani, Anna Hoffma, Sanjay Mishra, Jovan Popovic

1st Edition

1484263693, 978-1484263693

More Books

Students also viewed these Databases questions

Question

How to find if any no. is divisble by 4 or not ?

Answered: 1 week ago

Question

Explain the Pascals Law ?

Answered: 1 week ago

Question

What are the objectives of performance appraisal ?

Answered: 1 week ago

Question

How do Data Types perform data validation?

Answered: 1 week ago

Question

How does Referential Integrity work?

Answered: 1 week ago