main(){ int t,i; t=1; i=2;
while(i<=5){ t=t*i;
i=i+1;
}
printf("%d",t);
} 由于菜鸟数学差,请教一下大家能否解释一下这个程序。
t=t*i;i=i+1;菜鸟我看不懂这个是怎么回事。