josiftepe

Untitled

Oct 11th, 2020
50
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. using namespace std;
  4.  
  5. int main()
  6. {
  7. int a;
  8. int b;
  9. int c;
  10.  
  11. cin>>a;
  12. cin>>b;
  13. cin>>c;
  14.  
  15.  
  16. if(a+b==c){
  17. cout<<a<<"+"<<b<<"="<<c;
  18. }
  19.  
  20. if(a-b==c){
  21.  cout<<a<<"-"<<b<<"="<<c;
  22. }
  23.  
  24. if(a*b==c){
  25.  cout<<a<<"*"<<b<<"="<<c;
  26. }
  27.  
  28. if(a/b==c){
  29.  cout<<a<<"/"<<b<<"="<<c;
  30. }
  31.  
  32.     return 0;
  33. }
Advertisement
Add Comment
Please, Sign In to add comment