飽きてしまった...そして、このコーディングを行うことにしました。まだ完了していませんが、まだコンパイルできない理由を知りたいです。
/*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; }