gcd 2019-03-21 本文已影响0人 Goshowwww 基本的GCD int gcd(int a, int b) { if (b) return gcd(b, a % b); return a; }