本帖最后由 freshnboy 于 2016-3-27 14:45 编辑
- public static void main(String[] args) {
- double x = 0;// 假设需要存入x元
- int year = 5;// 五年取完
- x = get(year);
- System.out.println(x);
- }
- private static double get(int year) {
- double result = 1000;
- if (year > 1)
- result = get(year - 1) / 1.025 + 1000;
- return result;
- }
复制代码 |