私は C の初心者で、2 つの数値を消費してそれらの gcd を返す ftn を作成しました。今、1 つの数値を消費するだけで、ポインタを使用して 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))