标签:color class int 最大公约数 rem turn fun while 约数
1 int fun(int a, int b) { 2 while (b != 0) { 3 int remainder = a % b; 4 a = b; 5 b = remainder; 6 } 7 return a; 8 }
标签:color class int 最大公约数 rem turn fun while 约数
原文地址:https://www.cnblogs.com/moujun1001/p/9615767.html