-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproblema 6.c
67 lines (54 loc) · 1.83 KB
/
problema 6.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
//Jesús Huerta Aguilar, Javier de La Luz Ruiz, Ernesto Flores Cesareo
//Programación I - Inice De Masa Corporal IMC
#include <stdio.h>
float IndiceMasaCorporal(float peso, float estatura){
return peso/(estatura*estatura);
}
void Clasificacion(float IMC){
if (IMC <= 18)
{
printf("\n Usted se encuentra en PESO BAJO:");
}else
{
if (IMC > 18 && IMC <= 24.9)
{
printf("\n Usted se encuentra en NORMAL");
}else
{
if (IMC >= 25 && IMC <= 26.9)
{
printf("\n Usted se encuentra en SOBREPESO");
}else
{
if (IMC >= 27 && IMC <= 29.9)
{
printf("\n Usted se encuentra en OBESIDAD GRADO I");
}else
{
if (IMC >= 30 && IMC <= 39.9)
{
printf("\n Usted se encuentra en OBESIDA GRADO II");
}else
{
if (IMC >= 40)
{
printf("\n Usted se encuentra en OBESIDAD GRADO III");
}
}
}
}
}
}
}
int main(){
float IMC, peso, estatura;
printf("\n Introduzca su peso (kg): ");
scanf("%f", &peso);
printf("\n Introduzca su estatura (mt): ");
scanf("%f", &estatura);
IMC = IndiceMasaCorporal(peso,estatura);
printf("\n Su indice de masa coporal es: %f ", IMC );
Clasificacion(IMC);
getch();
return 0;
}