fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a, b, c;
  6. char x;
  7. cout << "enter a: ";
  8. cin >> a;
  9. cout << "enter b: ";
  10. cin >> b;
  11. cout << "enter operand: ";
  12. cin >> x;
  13.  
  14. if (x == '+')
  15. {
  16. c = a + b;
  17. }
  18. else if (x == '-')
  19. {
  20. c = a - b;
  21. }
  22. else if (x == '*')
  23. {
  24. c = a * b;
  25. }
  26. else if (x == '/')
  27. {
  28. c = a / b;
  29. }
  30.  
  31. return 0;
  32. }
Success #stdin #stdout 0s 3416KB
stdin
6 9 -


stdout
enter a: enter b: enter operand: