题解列表

筛选

1004: [递归]母牛的故事

摘要:# include<stdio.h> int fun(int n) {     if(n<=3) return n;     else return fun(n-1)+fun(n-3); }……