main() {intk,m=0; for(k=0;k

main()
{intk,m=0;
for(k=0;k<2;k++)
{m++;
if(m%2)continue;
m++:
}
printf("m=%d\n",m);
}
【正确答案】:m=3