人の体重と身長を考慮して、その人の BMI または体格指数を見つけて表示することが課題です。
BMI の計算には 2 つのことが必要です:
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
以下の方法は次のとおりです −
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
以上が肥満指数 (BMI) を計算する C プログラムの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。