#A Program to Calculate The BMI print("A Program to Calculate The BMI ;;Made by Young_Mind;;") print("Accordance with Meter & Kilogram") Height = input ("Please Give Me Your Height:") Weight = input ("Please Give Me Your Weight:") Weight = float(Weight) Height = float(Height) BMI = Weight/(Height**2) print("") print("") print("Your BMI is: " + str(BMI)) if BMI<18.5: print("You Are Thin") if 24.9>BMI>18.5: print("You Are Normall") if 29.9>BMI>25: print("You Are Overweight") if BMI>30: print("You Are Fat>>Consider Now!")
اجرا کن
پاک کن