Advertisement
campos20

Untitled

May 2nd, 2020
424
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.53 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. // Operacoes
  5. // Autor: Alexandre Campos
  6.  
  7. int main()
  8. {
  9.     // Declaracao das variaveis
  10.     int a, b;
  11.  
  12.     // Entrada de dados
  13.     printf("Digite o primeiro valor:\n");
  14.     scanf("%d", &a);
  15.     printf("Digite o segundo valor:\n");
  16.     scanf("%d", &b);
  17.  
  18.     // Exibicao em tela
  19.     printf("%d + %d = %d\n", a, b, a+b);
  20.     printf("%d - %d = %d\n", a, b, a-b);
  21.     printf("%d * %d = %d\n", a, b, a*b);
  22.     printf("%d / %d = %d\n", a, b, a/b);
  23.     printf("%d %% %d = %d\n", a, b, a%b);
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement