程序执行后的输出结果是#include
int main( )
{
int i,s=0;
for(i=1;i<10;i+=2)
{
s+=i+1;
}
printf("%d\n",s);
return 0;
}