单选题 有以下程序:
#include<stdio.h>
main()
{int i,s=0;
for(i=1;i<10;i++)
if(!(i%2)&&!(i%3))s+=i;
pfintf("%d/n",s);}
程序的输出结果是______。
【正确答案】 D
【答案解析】