Advertisement
wagner-cipriano

programa calculadora

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