summaryrefslogtreecommitdiff
path: root/t/t4018/custom1-pattern
blob: e8fd59f884d980ba638e41b19a355a690abaffe4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public class Beer
{
	int special, RIGHT;
	public static void main(String args[])
	{
		String s=" ";
		for(int x = 99; x > 0; x--)
		{
			System.out.print(x + " bottles of beer on the wall "
				+ x + " bottles of beer\n" // ChangeMe
				+ "Take one down, pass it around, " + (x - 1)
				+ " bottles of beer on the wall.\n");
		}
		System.out.print("Go to the store, buy some more,\n"
			+ "99 bottles of beer on the wall.\n");
	}
}