单选题 以下程序的输出结果是______。
main()
{ int i,j,m=0;
for (i=1;i<=15;i+=4)
for(j=3; j<=19; j+=4) m++;
printf("%d/n",m);
}
【正确答案】 C
【答案解析】