Advertisement
rodrigofbm

Calculadora

Sep 7th, 2015
311
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.92 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <ctype.h>
  4.  
  5.  
  6. int main()
  7. {
  8.     float num1, num2, resultado;
  9.     char op = '0';
  10.  
  11.     do{
  12.  
  13.         num1 = num2 = resultado = 0;
  14.         //opçoes da calculadora
  15.         printf("\n (1)Somar\n ");
  16.         printf(" (2)Subtrair\n ");
  17.         printf(" (3)Multiplicar\n ");
  18.         printf(" (4)Dividir\n ");
  19.         printf(" (0)Sair do programa\n");
  20.  
  21.         printf("\nInforme a operacao:\n ");
  22.         printf("\t");
  23.         scanf("%c", &op);
  24.         printf("\n");
  25.  
  26.         if(op!='0'){
  27.             printf("Digite o primeiro numero:\n\t ");
  28.             scanf("%f", &num1);
  29.  
  30.             printf("Digite o segundo numero:\n\t ");
  31.             scanf("%f", &num2);
  32.  
  33.             if(op == '1'){
  34.                 resultado = num1 + num2;
  35.             }
  36.            
  37.  
  38.         }
  39.  
  40.         printf("Resultado: %f", resultado);
  41.  
  42.     }while( op != '0');
  43.  
  44.  
  45.  
  46.     return 0;
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement