返回列表 發帖

IQ_10603-4

下列函式第3第5第7行程式分別該如何撰寫,才能正確計算並回傳兩參數 x, y 之最大公因數 (Greatest Common Divisor)?

1.         int GCD (int x, int y) {
2.         int r;
3.         ___________
4.         if (r == 0)
5.             return y;
6.         return _________________
7.         }

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表