CJCoding With Joseph

Remainder Method

Write a method remainder(int a, int b) that returns the remainder of a divided by b. Call it with 17 and 5 and print the result:

2

Use System.out.println.

Expected Output:

2
Topics:
Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.