基本的GCD
int gcd(int a, int b) { if (b) return gcd(b, a % b); return a; }
本文标题:gcd
本文链接:https://www.haomeiwen.com/subject/nlyumqtx.html
网友评论