โ Back to Methods
Question 369
Divide With Remainder Method
Divide With Remainder Method
Write the static methodDivModso it returns the quotient ofadivided byband, through anout int remainderparameter, also reports the remainder. The tester prints the quotient and remainder separated by a space. Do NOT write aMainmethod. ForDivMod(17, 5, out r)the program prints exactly: 3 2
Expected Output:
3 2
Topics:
Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.