现有如下程序段 #include stdio.h main() { int k[30]={12 324 45 6 768 98 21 34 453 456}; i
现有如下程序段#include "stdio.h"main(){ int k[30]={12,324,45,6,768,98,21,34,453,456};int count=0,i=0;while(k[i]){ if(k[i]%2==0||k[i]%5==0)count++;i++; }printf("%d,%d\n",count,i);}则程序段的输出结果为
A、7,8
B、8,8
C、7,10
D、8,10