| 5 | using namespace std; |
| 6 | |
| 7 | int main() |
| 8 | { |
| 9 | int dividend, divisor, quotient, remainder; |
| 10 | cout << "Enter dividend: "; |
| 11 | cin >> dividend; |
| 12 | cout << "Enter divisor: "; |
| 13 | cin >> divisor; |
| 14 | quotient = dividend / divisor; |
| 15 | remainder = dividend % divisor; |
| 16 | cout << "Quotient = " << quotient << endl; |
| 17 | cout << "Remainder = " << remainder << endl; |
| 18 | system("pause"); |
| 19 | return 0; |
| 20 | } |
nothing calls this directly
no outgoing calls
no test coverage detected