階乘的遞歸實現

#include <stdio.h> #include <stdlib.h> long f(long n); long f(long n){ if(n ==1){ return 1; }else{ return f(n-1)+n;//改這裏就行了 } } int main() { printf("%d\n",f(10));
相關文章
相關標籤/搜索