摘要: int gcd(int a,int b){ if(a % b == 0) return b; else return gcd(b,a % b); } 阅读全文
posted @ 2021-05-06 14:08 Xuuxxi 阅读(185) 评论(0) 推荐(0)