单项选择题
下列程序的输出结果是() main() { int i,s=0; for(i=1;i<10;i+=2) s+=i+1; printf(“%d\n”,s); }
A.自然数1~9的累加和 B.自然数1~10的累加和 C.自然数1~9中的奇数之和 D.自然数1~10中的偶数之和