โ Back to Loops
Question 349
Greatest Common Divisor with a Loop
Greatest Common Divisor with a Loop
Read two positive integers (one per line) and use a loop (the Euclidean algorithm) to compute their greatest common divisor, then print it. For input12then18the output is: 6
Expected Output:
6
Topics:
Loops
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.