@Yezi.press
使用递归实现欧几里得/辗转相除法求最大公约数
int gcd(int a, int b) { if (a % b == 0) return b; return gcd(b, a % b); }