function gcd($a ,$b){ while ($b != 0){ $r = $a % $b; $a = $b; $b = $r; } return $a; } print gcd($a,$b);
發佈留言
沒有留言:
發佈留言