你是要程序还是要什么?程序如下:#includevoid main(){ float s=0,t,i; for(i=1;i<=9;i++) { t=0.1+i/100; s+=t; } printf("%.2f\n",s);}计算结果为:1.35