public class Beer { public static void main(String[] args) { for (int i = 9; i >= 1; i--) { System.out.println(i + " bottles of beer on the wall, " + i + " bottles of beer"); System.out.println("Take one down, pass it around, " + (i - 1) + " bottles of beer on the wall."); System.out.println(); } } }