Voting

Category

real language

Bookmarking

Del.icio.us Digg Diigo DZone Earthlink Google Kick.ie
Windows Live LookLater Ma.gnolia Reddit Rojo StumbleUpon Technorati

Language Delphi

(NonVCL version)

Date:04/20/05
Author:Philipp Winterberg
URL:http://www.winterbergs.de/
Comments:0
Info:n/a
Score: (2.00 in 11 votes)
// *short* Delphi version of 99 Bottles of beer (Bottles.dpr)
// Philipp Winterberg, http://www.winterbergs.de
program Bottles;
uses windows, sysutils;
var b: integer;
begin
  for b:= 99 downto 1 do
   if MessageBox(0, Pchar(IntToStr(b) + ' bottle(s) of beer on the wall, ' + #13#10 +
                          IntToStr(b) + ' bottle(s) of beer.' + #13#10#13#10 +
                          'Take one down, pass it around,' + #13#10 +
                          IntToStr(b-1) + ' bottle(s) of beer on the wall.' + #13#10),
                    PChar('99 Bottles of Beer'), 65) = 2
     then exit
end.

Download Source | Write Comment

Alternative Versions

VersionAuthorDateCommentsRate
OO version - Delphi 7Luis Carlos F. Dias09/10/059
Recursive versionJuan Carlos Molinos01/12/062
standard versionAnonymous04/20/054
OO Simple version (not using Interfaces)Luis Carlos F. Dias09/04/050
OO version (with interface)Luis Carlos F. Dias09/05/050

Comments

Download Source | Write Comment

Add Comment

Please provide a value for the fields Name, Comment and Security Code.
This is a gravatar-friendly website.
E-mail addresses will never be shown.
Enter your e-mail address to use your gravatar.

Please don't post large portions of code here! Use the form to submit new examples or updates instead!

Name:

eMail:

URL:

Security Code:
  
Comment: