99 bottles of beer: Difference between revisions

Content added Content deleted
(SNUSP)
m (→‎Console: Why make a whole nother call for one character?)
Line 570: Line 570:
System.out.println(x + " bottles of beer");
System.out.println(x + " bottles of beer");
System.out.println("Take one down, pass it around");
System.out.println("Take one down, pass it around");
System.out.println((x-1) + " bottles of beer on the wall");
System.out.println((x-1) + " bottles of beer on the wall\n");
System.out.println();
}
}
}
}