问题详情
有以下程序: main() { int k=4,n=0; for(; n<k;) { n++; if(n%3!=O) continue; k--; } printf("%d,%d ",k,n); } 程序运行后的输出结果是()。
A、1,1
B、2,2
C、3,3
D、4,4