42.0k views
2 votes
The formula for calculating your BMI is below. BMI=703weight in pounds(height in inches)2 Which line of code will correctly calculate the BMI? Select 3 options.

User Mashton
by
5.8k points

1 Answer

3 votes

Answer:

bmi = 703 * weight / height ** 2

bmi = (703 * weight) / height ** 2

bmi = 703 * weight / (height * height)

Step-by-step explanation:

just took this on edge. have a good one

User Rodolpho Brock
by
5.6k points