josiftepe

Untitled

Oct 18th, 2020
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int a;
  8. int b;
  9. char x;
  10.  
  11. cin>>a;
  12. cin>>b;
  13. cin>>x;
  14.  
  15. if (x=='/'){
  16.     cout<<a/b;
  17. }
  18.  
  19. if (x=='*'){
  20.     cout<<a*b;
  21. }
  22.  
  23. if (x=='+'){
  24.     cout<<a+b;
  25. }
  26.  
  27. if (x=='-'){
  28.     cout<<a-b;
  29. }
  30.  
  31.  
  32. return 0;
  33. }
  34.  
Advertisement
Add Comment
Please, Sign In to add comment