mirror of
https://github.com/lifegpc/c-utils.git
synced 2026-06-06 13:18:57 +08:00
7 lines
105 B
C
7 lines
105 B
C
#include "cmath.h"
|
|
|
|
int GCD(int a, int b) {
|
|
if (b) while ((a %= b) && (b %= a));
|
|
return a + b;
|
|
}
|