Advertisement
wagner-cipriano

programa calculadora de soma e subtração c++

Oct 1st, 2020
2,006
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.83 KB | None | 0 0
  1. #include <iostream>
  2. #include <math.h>
  3. using namespace std;
  4. const float fator = 1.609;
  5.  
  6. //Protótipos
  7. float soma(float a, float b);
  8. float subtr(float a, float b);
  9.  
  10. int main() {
  11.     //Variaveis
  12.     float n1, n2, res;
  13.     int opc;
  14.  
  15.     //Entrada de dados:
  16.     cout << "Digite opcao 1: soma, 2: subtração): ";
  17.     cin >> opc;
  18.  
  19.     if(opc == 1 || opc == 2) {
  20.       cout << "Digite n1, n2 ";
  21.       cin >> n1 >> n2;
  22.     }
  23.  
  24.     if(opc == 1)
  25.       res = soma(n1, n2);
  26.     else if(opc == 2)
  27.       res = subtr(n1, n2);
  28.     else {
  29.       cout << "Opção inválida";
  30.       return 0;
  31.     }
  32.  
  33.     //Saída de dados
  34.     cout << "O resultado é " << res;
  35.     return 0;
  36. }
  37.  
  38. float subtr(float a, float b)  {
  39.   return a - b;
  40. }
  41.  
  42. float soma(float a, float b) {
  43.   float resultado;
  44.   resultado = a + b;
  45.   return resultado;
  46. }
  47.  
  48.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement