为什么我运行的程序不见前面的一小半??? 新手求教!
#include<stdio.h>#define MAX 100
int main()
{
int count=MAX+1;
while(--count>0)
{
printf("%d bottles of spring water on the wall,"
"%d bottlea of spring water!\n",count,count);
printf("Take one down and pass it around,\n");
printf("%d bottles of spring wawter !\n\n",count-1);
}
return 0;
}
为什么运行结果从这开始...
74 bottles of spring water on the wall, 74 bottlea of spring water!\n",count,count);
Take one down and pass it around,
73 bottles of spring wawter !
.
.
.