CJCoding With Joseph

Divide With Remainder Method

Write the static method DivMod so it returns the quotient of a divided by b and, through an out int remainder parameter, also reports the remainder. The tester prints the quotient and remainder separated by a space. Do NOT write a Main method.

For DivMod(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.