这个 是怎么出来的
int main (void){
int t_ct;
double time, x;
int limit;
printf("Enter the number of terms you want: ");
scanf ("%d",&limit);
for(time=0,x=1,t_ct=1; t_ct<=limit; t_ct++,x *=2.0 ) /* t_ct = t_ct * 2.0 */
{
time += 1.0/x; // time = tinme + 1.0/x;
printf("time = %f when terms = %d.\n",time,t_ct);
}
}
for(time=0,x=1,t_ct=1; t_ct<=limit; t_ct++,x *=2.0 ) 求帮忙指点下这行 有点不太明白