摘要: 1 #include <iostream> 2 using namespace std; 3 int gcd(int a, int b) 4 { 5 if (0 == a % b) 6 { 7 return b; 8 } 9 return gcd(b, a % b); 10 } 11 int gcd 阅读全文
posted @ 2022-01-07 16:38 wisdomroc 阅读(22) 评论(0) 推荐(0) 编辑