高普考題庫
114 年 114年公務人員高等考試三級考試暨普通考試・計算機概要
27C語言的函數如下,則g(10, 10)的回傳值為何?int g(int s, int n){if(n<=1)return s;return g(s+n, n-1);}