找考题网-背景图
填空题

main()
int n;
float s=1.0;
for(n=10;n>1;n--)
s=s+1/n;
printf("%6.1f\n",s);

错误:______
改正:______

【参考答案】

错误:s=s+1/n;
改正:将其修改为s=s+1.0/n;