| 5 | using namespace std; |
| 6 | |
| 7 | int main() |
| 8 | { |
| 9 | int num1, num2; |
| 10 | cout << "Enter two integers: "; |
| 11 | cin >> num1 >> num2; |
| 12 | cout << "Sum: " << num1 + num2 << endl; |
| 13 | cout << "Difference: " << num1 - num2 << endl; |
| 14 | cout << "Product: " << num1 * num2 << endl; |
| 15 | cout << "Quotient: " << num1 / num2 << endl; |
| 16 | cout << "Remainder: " << num1 % num2 << endl; |
| 17 | system("pause"); |
| 18 | return 0; |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected