Compte tenu du poids et de la taille d'une personne, la tâche consiste à trouver son IMC, c'est-à-dire son indice de masse corporelle, et à l'afficher.
Le calcul de l'indice de masse corporelle nécessite deux choses :
Vous pouvez utiliser la formule suivante pour calculer l'IMC :
IMC = (masse ou poids) / (taille * taille)
où le poids est en kilogrammes en unités, taille en mètres
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
La méthode utilisée ci-dessous est la suivante −
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; }
Si nous exécutons le code ci-dessus, la sortie suivante sera générée
BMI index is : 23.53
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!