摘要: static int gcd(int a, int b) { if(a == 0 || b == 0) return a+b; return gcd(b,a%b); } 阅读全文
posted @ 2016-08-11 10:18 秋水小战士 阅读(118) 评论(0) 推荐(0) 编辑