摘要: int gcd(int a ,int b){ if(a%b!=0){ return gcd(b,a%b); } else{ return b; } } 阅读全文
posted @ 2020-08-17 11:34 Auterman 阅读(150) 评论(0) 推荐(0) 编辑