编写求正整数的最大公约数的递归函数: int gcd(int a,int b) { if(b==0) return a; else return gcd(______); }

时间:2022-11-17 17:32:48

相似题目