Poker p;
while (1)
{
inpointpoker(&p);
while (getchar() != '\n')
;
outputjocker(&p);
puts(" ");
}
Poker p;
while (1)
{
inpointpoker(&p);
while (getchar() != '\n')
outputjocker(&p);
puts("");
}
可以看到while将紧跟着的一句当成循环体,判断为假时,跳过执行了。