摘要: int gcd(int a, int b){ return b? gcd(b, a % b) : a; } 阅读全文
posted @ 2021-11-17 14:49 羽错光阴 阅读(140) 评论(0) 推荐(0) 编辑