Ask the user for their height in inches and weight in pounds. The UI is up to you. Now, calculate: BMI: 999 Inches Centimeters XXXXXXXXXX Pounds Kilograms Stone XXXXXXXXXX99 output on the screen. Your...

1 answer below »

Ask the user for their height in inches and weight in pounds. The UI is up to you.


Now, calculate:


BMI: 999


Inches Centimeters


99 99


Pounds Kilograms Stone


99 99 99


output on the screen.


Your code should contain documentation (comments) that explain what is going on.

Answered Same DayNov 04, 2021

Answer To: Ask the user for their height in inches and weight in pounds. The UI is up to you. Now, calculate:...

Neha answered on Nov 05 2021
111 Votes
#include
using namespace std;

int main()
{

float bmi,weight,height;
float cm,
kg, stone;
cout<<"Please Enter your weight in Pounds : ";
cin>>weight;
cout<<"Please Enter your Height in Inches : ";
cin>>height;
bmi=(weight*703)/(height*height);
cout<<"Your BMI is :...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here