Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- #include<stdlib.h>
- int main() {
- float P, A, IMC;
- int idade;
- printf("Digite sua idade:\n");
- scanf("%d",&idade);
- printf("Digite o seu peso:\n");
- scanf("%f",&P);
- printf("Digite a sua altura:\n");
- scanf("%f",&A);
- IMC = P / (A*A);
- if (IMC < 26){
- printf("O seu Indice de Massa Corporea e %.2f e esta Normal\n", IMC );
- }
- if (IMC >=26 && IMC<30){
- printf ("O seu Indice de Massa Corporea e %.2f e voce esta Obeso\n", IMC);
- }
- if (IMC >=30){
- printf("O seu Indice de Massa Corporea e %.2f e voce esta com Obesidade Morbida\n", IMC);
- }
- if (idade>=18){
- printf("Você é maior de idade",idade);
- }
- if (idade <18){
- printf("Você é menor de idade",idade);
- }
- {
- return (0);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement