99 Bottles of Beer
Counting song
From Wikipedia, the free encyclopedia
"99 Bottles of Beer" or "100 Bottles of Pop on the Wall" is a traditional reverse counting song from the United States and Canada. It is popular to sing on road trips, as it has a very repetitive format which is easy to memorize and can take a long time when sung in full. In particular, the song is often sung by children on long school bus trips, such as class field trips, family road trips, or on Scout or Girl Guide outings. In computer science, printing the lyrics of "99 Bottles of Beer" is a commonly used task to demonstrate esoteric programming languages.
History
Variations of the song include "ninety nine blue bottles a-hanging on the wall",[1] "Forty-nine Blue Bottles", and "Forty-nine 'Possums" (an "old game song" with lyrics such as "Take one away and there will be / Forty-eight 'possums hanging on a tree."[2]).[3] The "blue bottles" may refer to blue bottle flies.[3][4] Some variant of the song has existed since at least "shortly after the Civil War", estimated as 1860s or early 1870s.[3][5]
This song has been popular amongst college students.[3] One version of the melody and lyrics[6][7][8] is:

Another melody is:[9]

By 1898, a variation existed with the modern bottle count of 99 and the bottles specified as beer bottles.[10]
Lyrics
The song's lyrics are as follows, beginning with n=99:[11][12]
(n) bottles of beer on the wall.
(n) bottles of beer.
Take one down, pass it around,
(nâ1) bottles of beer on the wall.

The same verse is repeated, each time with one bottle fewer, until there are none left. Variations on the last verse following the last bottle going down include lines such as:
No more bottles of beer on the wall,
no more bottles of beer.
Go to the store and buy some more,
99 bottles of beer on the wall...
Or:
No more bottles of beer on the wall,
no more bottles of beer.
We've taken them down
and passed them around;
now we're drunk and passed out!
Other alternate lines read:
No more bottles of beer on the wall,
no more bottles of beer.
There's nothing else to fall,
because there's no more bottles of beer on the wall.
Alternatively, the verse for the last one can be modified instead, such as:
If that one bottle should happen to fall,
what a waste of alcohol!
And if that green bottle should accidentally fall,
There'd be nothing but the smell a-hanging on the wall.
Or the song does not stop at the last "1" or "0" bottles of beer but continues counting with
â1 (Negative one) bottles of beer on the wall
Take one down, pass it around,
â2 (negative 2) bottles of beer on the wall...
continuing onward through the negative numbers.
Another option is to count back up by saying "Add one bottle to them all."[6][7]
Full-length recitals
Singing all verses takes an extraordinarily long time. The American comedian Andy Kaufman used this for comedic effect early in his career when he actually sang all 100 verses.[17]
Atticus, a band from Knoxville, Tennessee, recorded a thirteen and a half minute live version of the song in its entirety at the Glasgow Cathouse in Scotland. It was included in the 2001 album Figment. Rich Stewart aka Homebrew Stew listed it as the number one drinking song out of 86 in an article for Modern Drunkard Magazine the following year.[18]
Mathematically inspired variants
Donald Byrd has collected dozens of variants inspired by mathematical concepts and written by himself and others.[19] (A subset of his collection has been published.[20]) Byrd argues that the collection has pedagogic as well as amusement value. Among his variants are:
- "Infinity bottles of beer on the wall". If one bottle is taken down, there are still infinite bottles of beer on the wall (thus creating an unending sequence much like "The Song That Doesn't End").
- "Aleph-null bottles of beer on the wall". Aleph-null is the size of the set of all natural numbers, and is the smallest infinity and the only countable one; therefore, even if an infinite aleph-null of bottles fall, it could still be true that the same amount remains.
- "Aleph-one/two/three/etc. bottles of beer on the wall". Aleph-one, two, three, etc. are uncountable infinite sets, which are larger than countable ones; therefore, if only a countable infinity of bottles fall, an uncountable number remains.
Other versions in Byrd's collection involve concepts including geometric progressions, differentials, Euler's identity, complex numbers, summation notation, the Cantor set, the Fibonacci sequence, and the continuum hypothesis, among others.
References in computer science
The computer scientist Donald Knuth proved that the song has a complexity of in his in-joke-article "The Complexity of Songs".[21]
Numerous computer programs exist to output the lyrics to the song. This is analogous to "Hello, World!" programs, with the addition of a loop. As with "Hello, World!", this can be a practice exercise for those studying computer programming, and a demonstration of different programming paradigms dealing with looping constructs and syntactic differences between programming languages within a paradigm.
The program has been written in over 1,500 different programming languages.[22]
Example
C
# include <stdio.h>
# include <stdbool.h>
int main(void) {
for (size_t i = 99; i > 0; i--) {
printf("%zu bottle%s of beer on the wall, %zu bottle%s of beer.\nTake one down & pass it around, now there's ",
i, (i == 1 ? "" : "s"), i, (i == 1 ? "" : "s"));
printf((i > 1) ? "%zu bottle%s of beer on the wall\n"
: "no more bottles of beer on the wall!\n",
i - 1, i==2?"":"s");
}
}
Rust
fn main() {
for i in (3..100).rev() {
println!(
"{i} bottles of beer on the wall,\n\
{i} bottles of beer.\n\
Take one down and pass it around,\n\
now there's {} more bottles of beer on the wall!\n",
i - 1
);
}
println!(
"2 bottles of beer on the wall,\n\
2 bottles of beer.\n\
Take one down and pass it around,\n\
now there's 1 more bottle of beer on the wall!\n",
);
println!(
"1 bottle of beer on the wall,\n\
1 bottle of beer.\n\
Take one down and pass it around,\n\
there's no more bottles of beer on the wall!"
);
}
Haskell
verses :: [String]
verses =
"1 bottle of beer on the wall, 1 bottle of beer.\nTake one down and pass it around, there's no more bottles of beer on the wall!"
: "2 bottles of beer on the wall, 2 bottles of beer.\nTake one down and pass it around, now there's 1 more bottle of beer on the wall!"
: map (\n -> show n
++ " bottles of beer on the wall, "
++ show n
++ " bottles of beer.\nTake one down and pass it around, now there's "
++ show (n-1)
++ " more bottles of beer on the wall!") [3..]
main :: IO ()
main = mapM_ putStrLn (reverse $ take 99 verses)
Python
n_bottles = 99
for n in range(n_bottles, 0, -1):
print(f"{n} bottles of beer on the wall.")
print(f"{n} bottles of beer.")
print("Take one down, pass it around,")
print(f"{n-1} bottles of beer on the wall\n")
print("No more bottles of beer on the wall,")
print("no more bottles of beer.")
print("Go to the store and buy some more,")
print("99 bottles of beer on the wall...")
R
positive_bottles <- function(n) {
s <- ifelse(n > 1, "s", "")
"{n} bottle{s} of beer on the wall.
{n} bottle{s} of beer.
If one of the bottles just happen to fall,
{n-1} bottles of beer on the wall." |> glue::glue()
}
zero_bottles <- "No more bottles of beer on the wall,
no more bottles of beer.
There's nothing else to fall,
because there's no more bottles of beer on the wall."
for (i in 99:1)
positive_bottles(i) |> cat("\n\n")
cat(zero_bottles)
See also
- "Potje met vet" â a traditional Dutch song sung in the same style
- "Ten Green Bottles" â a similar song which is popular in the United Kingdom
