該程序只是在牆上輸出歌曲九十九瓶啤酒。它編譯沒有錯誤,但在我的代碼中沒有任何反應。我認爲這與我爲最後兩種方法設置參數有關,而我的實例變量卻對此有所瞭解。我很困惑爲什麼我的程序沒有循環和打印
package beersong;
public class BeerSong
{
private int numBeerBottles;
private String numberInWords;
private String secondNumberInWords;
private int n;
private String[] numbers = {"", "one", "two", "three", "four", "five",
"six", "seven", "eight", "nine", "ten", "eleven", "twelve", "thirteen",
"fourteen", "fifteen", "sixteen", "seventeen", "eighteen", "nineteen"
};
private String[] tens = {"", "", "Twenty", "Thirty", "Forty", "Fifty",
"Sixty", "Seventy", "Eighty", "Ninety"
};
//constructor
public BeerSong (int numBeerBottles)
{
this.numBeerBottles = numBeerBottles;
}
//method to return each line of song
public String convertNumberToWord(int n)
{
if(n<20)
{
this.numberInWords = numbers[n];
}
else if (n%10 == 0)
{
this.numberInWords = tens[n/10];
}
else
{
this.numberInWords = (tens[(n - n%10)] + numbers[n%10]);
}
return this.numberInWords;
}
//method to get word for n-1 beer in song
public String getSecondBeer(int n)
{
if((n-1)<20)
{
this.secondNumberInWords = numbers[(n-1)];
}
else if ((n-1)%10 == 0)
{
this.secondNumberInWords = tens[(n-1)/10];
}
else
{
this.secondNumberInWords = (tens[((n-1) - (n-1)%10)] + numbers[(n-1)%10]);
}
return this.secondNumberInWords;
}
//method to actually print song to screen
public void printSong()
{
for (n=numBeerBottles; n==0; n--)
{
System.out.println(convertNumberToWord(n) + " bottles of beer on the "
+ "wall. " + convertNumberToWord(n) + " bottles of beer. "
+ "You take one down, pass it around "
+ getSecondBeer(n) + " bottles of beer on the wall");
System.out.println();
}
}
public static void main(String[] args)
{
BeerSong newsong = new BeerSong(99);
newsong.printSong();
}
}
n ==可0說什麼必須N> = 0 :) – Raja