填空题

以下程序的输出结果为 【6】
main()
int k=1;
white(k<=15)
if(++k%3!=2)continue;
else printf("%d ",k);
printf("\n");

【参考答案】

2 5 8 11 14