首頁 >後端開發 >C++ >C程式計算身體質量指數(BMI)

C程式計算身體質量指數(BMI)

WBOY
WBOY轉載
2023-09-03 21:29:063043瀏覽

C程式計算身體質量指數(BMI)

給定一個人的體重和身高,任務是找到他的BMI即身體質量指數,並顯示出來。

計算身體質量指數需要兩個東西:

  • 體重
  • 身高

可以使用下面的公式計算BMI:

BMI = (質量或體重) / (身高*身高)

其中體重以公斤為單位,身高以公尺為單位

範例

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

Example

 實例示範

#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

以上是C程式計算身體質量指數(BMI)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除