public static double capitalAfterYearsRecursive(double K0, int n, double i,double R) {
double K1;
if(n < 0)
{
return K0;
}
else
return capitalAfterYearsRecursive(K0, n-1 ,i ,R)*(i+1);
}
所以,球員,我需要你的幫助,它不顯示了正確的平衡:/計算資金賬戶的銀行在遞歸
K0 start capital
n runtime (years)
i interest rate
R yearly rate
歡迎StackOverflow上。請閱讀並遵守幫助文檔中的發佈準則。 [最小,完整,可驗證的示例](http://stackoverflow.com/help/mcve)適用於此處。在您發佈代碼並準確描述問題之前,我們無法有效幫助您。 – Prune
您可以添加您想要計算的參數數據的示例,以及預期的結果嗎? – martiendt
你爲什麼通過「利率」和「年率」?他們獨立的是什麼?你從不在計算中使用** R **。 – Prune