Answers for "body mass index"

1

body mass index

height = float(input("Input your height in Feet: "))
weight = float(input("Input your weight in Kilogram: "))
print("Your body mass index is: ", round(weight / (height * height), 2))
Posted by: Guest on May-06-2021

Browse Popular Code Answers by Language