CJCoding With Joseph

Greatest Common Divisor

Write a function int gcd(int a, int b) that returns the greatest common divisor of a and b using the Euclidean algorithm (repeatedly replace the pair with b and a % b until b is 0).

For gcd(12, 18) the program prints 6.

Expected Output:

6
Topics:
Functions
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.