Advertisement
Josif_tepe

Untitled

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