单项选择题下列选项中正确的语句组是( )。
单项选择题有以下程序main( ){ int k=4,n=0;for( ; n<k ; ){ n++;if(n%3!=0) continue;k--; }printf( %d,%d n ,k,n);}程序运行后的输出结果是( )。