C++ Operators GeeksforGeeks Problems

Suman Barik
0

#include <iostream>


using namespace std;


void cppOperator(int a, int b){


  cout << a + b << endl << endl;

  

  cout << a * b << endl << endl;

  

  if(a > b) {

  

    cout << a - b << endl << endl;

  

    cout << a / b << endl << endl;

    

  }

  

  else {

  

    cout << b - a << endl << endl;

  

    cout << b / a << endl << endl;

    

  }

  

}


int main() {


  cppOperator(5,7);

  

  return 0;

  

}

  

  

Post a Comment

0Comments
Post a Comment (0)