大家再帮我改下错!!!
下面程序Daphne和Cleo分别是两个人,程序目的是,D是以10%的单利投资投资了100元既:利息=0.1*原始存款,C是以5%的复利投资投资了100元,也就是第一年赢利105。第2年赢利是105的5%=5.25,写的时候也感觉不对,可是也不知道错在哪了#include <iostream>
const int Daphne=100;
const int Cleo=100;
int main()
{using namespace std;
int daphnes;
daphnes=Daphne*0.1;
int cleos;
cleos=Cleo*0.05;
int year=1;
for(year;cleos<=daphnes;year++)
{cleos=(Cleo+cleos)*0.05;
year++;
}
cout<<year<<endl;
system("pause");
return 0;
}