Advertisement
d3dx939dll

Aula6 - operação matemáticas.c

Dec 10th, 2020
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.51 KB | None | 0 0
  1. /*
  2. Autor: d3dx939dll
  3. Aula: Operação Matemáticas
  4. Grupo: Heikou
  5. Data: 11/12/2020
  6. */
  7. #include <stdio.h>
  8.  
  9. int main()
  10. {
  11.     //Variaveis pra soma
  12.     int a = 20;
  13.     int b = 40;
  14.     int c = 45;
  15.     int d = 15;
  16.    
  17.     //Juncao de todas as variaveis
  18.     int idadeTotal;
  19.    
  20.     idadeTotal = a + b + c + d;
  21.    
  22.     //Resultado final
  23.     printf("Soma Total: %i\n", idadeTotal);
  24.    
  25.     return 0;
  26.    
  27. }
  28. /*
  29. Operadores Logicos:
  30.  
  31. (+) Adicao
  32. (-) Subtracao
  33. (*) Multiplicacao
  34. (/) Divisao
  35.  
  36. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement