C
c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdio.h>
int main() {
float bmi;
scanf("%f",&bmi);
if(bmi<18.5){
printf("Underweight");
}
else if(bmi>25){
printf ("Overweight");
}
else{
printf ("Normal");
}
return 0;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Uruchom