填空题

以下程序运行后的输出结果是 【8】 。 main() { int p[7]={11,13,14,15,16,17,18}; int i=0,j=0; while(i<7&&p[i]%2==1)j+=p[i++]; printf("%d\n",j); }

【参考答案】

X