下面是根据欧几里得算法编写的函数,它计算的是 与 的( )。
1 int gcd(int a, int b) { 2 while (b != 0) { 3 int temp = b; 4 b = a % b; 5 a = temp; 6 } 7 return a; 8 }