โ Back to Methods
Question 373
Recursive Greatest Common Divisor
Recursive Greatest Common Divisor
Write a recursive methodgcd(int a, int b)that returns the greatest common divisor ofaandbusing Euclid's algorithm: whenbis 0 the answer isa; otherwise the answer isgcd(b, a % b). Call it with48and18and print the result: 6 UseSystem.out.println.
Expected Output:
6
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.