d3dx939dll

Aula14 - Estrutura de Decisao (IF e ELSE)

Dec 17th, 2020 (edited)
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.32 KB | None | 0 0
  1. /*
  2. Aula: Estrutura de Decisão (IF e ELSE)
  3. Data: 17/12/2020
  4. Grupo: Heikoa
  5. */
  6. #include <stdio.h>
  7.  
  8. int main()
  9. {
  10.  
  11.     int idade;
  12.  
  13.     printf("Digite sua Idade: ");
  14.     scanf("%i", &idade);
  15.  
  16.     if(idade < 18){
  17.         printf("Voce nao pode beber!\n");
  18.     }
  19.     else{
  20.         printf("Oque Vai Querer Beber Patrao?\n");
  21.     }
  22.  
  23.     return 0;
  24. }
Add Comment
Please, Sign In to add comment