Answer:
The missing code for the above problem is as follows:
Explanation:
Missing code :
cin>>firstNum>>secondNum; // for the first case.
if(firstNum==0||secondNum==0) // for the second case.
cout<<"Both the inputed numbers must be nonzero."; // for the second case.
else if (firstNum>secondNum) // for the third case
cout <<firstNum/secondNum; // for the third case.
else if(secondNum>firstNum) // for the fourth case.
cout <<secondNum/firstNum; // for the fourth case.
else // for the fourth case.
cout<<firstNum*secondNum; // for the forth case.
Output:
Code Explanation: