高普考題庫
107 年 107年公務人員高等考試三級考試暨普通考試・計算機概要
31函數A是以C語言實作:int A(int m, int n){if (m<2)return n+1;elsereturn A(m-2,n/3);}請問A(5,729)所回傳的值應為下列何者?