0
給定函數fun,Rec的數學公式是什麼?函數等式
public class Fun {
public static int Rec(int n) {
if ((n==1) || (n==2))
return 1;
else {
int result = 0;
for(int i=2; i<=(n-1); i++)
result = result+Rec(n-1)+ Rec(n-2);
return result;
}
}
}
你應該用小寫字母開頭方法名稱 –
這聽起來像一個'請做我的作業'的問題... – Pyrce
你能確定這是用什麼語言? (推測是C#?) –