《head first java》书中一道数啤酒瓶童谣的程序,求解释

最近在自学java,买了本《headfirstjava》,其中有一条关于数啤酒瓶童谣的程序,编译了可以运行,可是不知到程序意义,很难理解,求高手解答,谢谢!=======... 最近在自学java,买了本《head first java》,其中有一条关于数啤酒瓶童谣的程序,编译了可以运行,可是不知到程序意义,很难理解,求高手解答,谢谢!

=================================================================
public class BeerSong{
public static void main (String[] args){
int beernum = 99;
String word = "bottles";
while (beernum > 0){
if (beernum == 1){
word = "bottle";
}
System.out.println(beernum + " " + word + "of beer on the wall");
System.out.println(beernum + " " + word + "of beer.");
System.out.println("Take one down.");
System.out.println("pass it around.");
beernum = beernum - 1;
if (beernum > 0){
System.out.println(beernum + " " + worf + " of beer on the wall");
} else{
System.out.println("no more bottles of beer on the wall");
}
}
}
}
展开
 我来答
野文菜A
推荐于2016-03-10 · TA获得超过830个赞
知道小有建树答主
回答量:645
采纳率:100%
帮助的人:513万
展开全部
就是说,一共有99瓶酒,喝下一瓶输出 take one down,干掉了一个,
知道最后没有酒了,输出no more bottles of beer on the wall
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式