TheAlgorithms-C/math/gcd.c
Defective Detective 56b72da9fb
chore: move various misc folder... (#1177)
...algorithms to the `math` folder.

Co-authored-by: David Leal <halfpacho@gmail.com>
2022-12-22 11:26:50 -06:00

18 lines
278 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));
}