public class Lx02 {
public static void main(String[] args) {
/*假设你月收入是6000,除开平时花销,每个月留下2000块钱进行投资。
假设达到了每年20%的投资回报率。
以每个月投资2000块钱的节奏,持续投资多少年,
总收入才能达到100万(复利计算按照每年24000投入计算,不按照每月计息)*/
// F = P*((利率)^n);
//
int p = 24000;
//
double r = 1.2;
//
double total = 0;
//
int year = 1;
//
while (true) {
//
total = total+(p*Math.pow(r, year));
System.out.printf("第%d年的总收入为:%f \n",year,total);
//
if (total>=1000000) {
System.out.printf("第%d年的可以达到目标总收入: \n",year);
//结束循环
break;
}
//
year++;
}
}
}