Question: Problem #1 Problem # 2 Problem #3 Body Mass Index (BMI) is a measure of health on weight. Write a program that prompts the user


Body Mass Index (BMI) is a measure of health on weight. Write a program that prompts the user to enter a weight in pounds and height in inches and displays the BMI. w Hint: BMI 2 x 703 where w: weight (pounds) and h: height (inches) Here is a console output example: Enter weight in pounds: 140 Enter height in inches : 62 BMI is 25.60 Write a C++ program that reads a number in feet, convert it to meters, and displays the result. One foot is 0.305 meter. Here is a console output example: Enter a value for feet: 14 The value in meters: 4.27 Write a C++ program to calculate and display the temperature conversion from Fahrenheit degree to Celsius and Kelvin degrees. The user will enter a Fahrenheit degree temperature and the program will display their equivalent in Celsius and Kelvin degrees. Hint: C = $(F - 32) K = 6 + 273.15
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
