阅读背景:

麻烦帮个忙把这个尾递归改写成循环?

来源:互联网 

//代码如下
int gcd(int a, int b)
 {
    if(a<b)
      return gcd(b,a);   



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: