我很无聊......并决定进行这个编码,它还没有完成,但我想知道为什么它还不能编译。
/*Coding that will countdown the amount of bottles on the wall
*/
#include<stdio.h>
int main()
{
int bottles = 99;
while (bottles >= 0) {
put ("%i\n bottles of beer on the wall, %i\n bottles of beer, take one down pass it around", bottles, bottles) ; {
bottles--;
put ("%i\n bottles of beer on the wall", bottles) ;
}
continue; }