Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- Autor: d3dx939dll
- Aula: Operação Matemáticas
- Grupo: Heikou
- Data: 11/12/2020
- */
- #include <stdio.h>
- int main()
- {
- //Variaveis pra soma
- int a = 20;
- int b = 40;
- int c = 45;
- int d = 15;
- //Juncao de todas as variaveis
- int idadeTotal;
- idadeTotal = a + b + c + d;
- //Resultado final
- printf("Soma Total: %i\n", idadeTotal);
- return 0;
- }
- /*
- Operadores Logicos:
- (+) Adicao
- (-) Subtracao
- (*) Multiplicacao
- (/) Divisao
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement