Computer >> 컴퓨터 >  >> 프로그램 작성 >> C 프로그래밍

체질량 지수(BMI)를 계산하는 C 프로그램

<시간/>

사람의 몸무게와 키가 주어지면 그 사람의 체질량지수인 BMI를 찾아 표시하는 것이 과제입니다.

체질량 지수를 계산하려면 두 가지가 필요합니다 -

  • 무게
  • 높이

BMI는 다음 공식을 사용하여 계산할 수 있습니다. -

BMI =(질량 또는 체중) / (신장*신장)

여기서 무게는 kg이고 키는 미터입니다.

예시

Input 1-: weight = 60.00
   Height = 5.1
Output -: BMI index is : 23.53
Input 2-: weight = 54.00
   Height = 5.4
Output -: BMI index is : 9.3

아래에 사용된 접근 방식은 다음과 같습니다. -

  • 플로트 변수에 체중(kg), 키(미터) 입력
  • 체질량 지수를 계산하는 공식 적용
  • BMI 인쇄

알고리즘

Start
Step 1-> Declare function to calculate BMI
   float BMI(float weight, float height)
      return weight/height*2
step 2-> In main()
   Set float weight=60.00
   Set float height=5.1
   Set float bmi = BMI(weight,height)
   Print BMI
Stop

예시

#include<stdio.h>
//function to calculate BMI index
float BMI(float weight, float height) {
   return weight/height*2;
}
int main() {
   float weight=60.00;
   float height=5.1;
   float bmi = BMI(weight,height);
   printf("BMI index is : %.2f ",bmi);
   return 0;
}

출력

위의 코드를 실행하면 다음 출력이 생성됩니다.

BMI index is : 23.53