키와 몸무게를 입력해야 합니다. 우리의 임무는 공식을 사용하여 BMI를 계산하는 것입니다.
알고리즘
Step 1: input height and weight of your body. Step 2: then applying the formula for calculation BMI. Step 3: display BMI.
예시 코드
height = float(input("Enter your height(m): ")) weight = float(input("Enter your weight(kg): ")) print("Your BMI is: ", round(weight / (height * height), 2))
출력
Enter your height (m): 5.8 Input your weight (kg): 64 Your body mass index is: 1.9