Unconfigured Ad Widget

Collapse

Anúncio

Collapse
No announcement yet.

Imc

Collapse
X
 
  • Filter
  • Tempo
  • Show
Clear All
new posts

  • Font Size
    #1

    C / C++ Imc

    Código:
    #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);
                        
        }
    }
X
Working...
X