#include #include int main() { float weight; /* Weight in kilograms */ float height; /* Height in meters */ printf("Please enter your weight in kilograms (kg) "); scanf("%f", &weight); printf("Please enter your height in meters (m) "); scanf("%f", &height); printf("Weight = %f kg, Height = %f m, BMI = %0.2f", weight, height, weight/(height*height)); return 0; }