摘要: int gcd(int a,int b){ return b?gcd(b,a%b):a; } 最大公因数 阅读全文
posted @ 2022-09-05 15:02 硬核小马 阅读(81) 评论(0) 推荐(0)