Computer Science, asked by rampadevi984, 4 months ago

write a program in Python to calculate bmi of a person use formula bmi = kg /m**2​

Answers

Answered by kuhu005
5

Explanation:

height = float(input("Input your height in meters:"))

weight = float(input("Input your weight in kilogram: "))

print("Your body mass index is: ", round(weight / (height * height), 2))

output:

Input your height in meters: 5.8

Input your weight in kilogram: 85

Your body mass index is: 2.53

hope it will helpful to you give thanks to my answer nd follow me..

be happy nd take care of yourself

Similar questions