#include <iostream> int common_divisor(int a, int b, int c, int x) //遞迴函式 { if(a%x==0 && b%x==0 && c%x==0) //終止條件,找到公因數
確定! 回上一頁