TheAlgorithms-C/misc/GCD.c
2017-10-19 10:19:44 +02:00

16 lines
276 B
C

#include <stdio.h>
// Euclid's algorithm
int GCD(int x, int y) {
if (y == 0)
return x;
return GCD(y, x%y);
}
int main() {
int a, b;
printf("Input two numbers:\n");
scanf("%d %d", &a, &b);
printf("Greatest common divisor: %d\n", GCD(a, b));
}