2018 母牛的故事 題解

由題意得: 1.此題是遞歸類型 2.此題也是數學中的函數問題 3.函數爲:f(x)=x(x<5)&&f(x)=f(x-1)+f(x-3)(x>=5) 4.代碼如下: #include<stdio.h> #include<stdlib.h>int cow(int n) {     if(n<5)         return n;     else         return cow(n-1)+c
相關文章
相關標籤/搜索