do{ year++; number=number*1.2;
和
do{ ++year; number=number*1.2;一样吗?
int(i=1) i++=1,++i=2;i++是先运算再加1,++i是先加1再运算。
那