Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Java by jplace ( 6 years ago )
// made by @jplace
// expert programmer lol jk
// 11-12-2020
public class Bottles
{
public static void main(String[] args)
{
int bottles = 99;
while(bottles >= 0)
{
System.out.println(bottles + " bottles of beer on the wall, " + bottles + " bottles of beer");
System.out.println("Take one down and pass it around," + (bottles - 1) + " of beer on the wall");
bottles--;
}
}
}
Revise this Paste