int gcd(int a,int b){ if(b == 0) return a; return gcd(b,a%b);}这一段代码每行是什么意思,gcd函数该怎么用。
收起
求的是最大公约数,不知道好理解不
报告相同问题?