我是 C 的初学者,我刚刚写了一个消耗两个数字并返回它们的 gcd 的 ftn。现在我在想,如果您只使用一个数字,您如何使用指针找到 gcd。谁能告诉我是否有办法做到这一点?谢谢。
Example:
gcd(5) = 5 (gcd of 5 and itself)
gcd(10) = 5 (gcd of 10 and 5(from the last call))
gcd (4) = 1 (gcd of 4 and 5(from the last call))
gcd (7) = 1 (gcd of 7 and 1(from the last call))