单项选择题
写出程序的运行结果。
#include <stdio.h>
main()
{ int j;
for(j=0;j<10;j++)
{if (j%2==0) continue;
printf("%d",j);
}
}
该程序的执行结果是()。
A.0 4 2 6 8
B.1 3 5 7
C.1 3 5 7 9
D.2 4 6 8
点击查看答案
相关考题
