CJCoding With Joseph

Recursive GCD Method

Write the static method Gcd so it returns the greatest common divisor of two non-negative integers using the recursive Euclidean algorithm: when b is 0 the answer is a, otherwise the answer is Gcd(b, a % b). The tester calls it and prints the result. Do NOT write a Main method.

For Gcd(48, 18) the program prints exactly:
6

Expected Output:

6
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.