Language Delphi
(NonVCL version)
| Date: | 04/20/05 |
| Author: | Philipp Winterberg |
| URL: | http://www.winterbergs.de/ |
| Comments: | 0 |
| Info: | n/a |
| Score: |
// *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
| Version | Author | Date | Comments | Rate |
|---|---|---|---|---|
| OO version - Delphi 7 | Luis Carlos F. Dias | 09/10/05 | 9 | |
| Recursive version | Juan Carlos Molinos | 01/12/06 | 2 | |
| standard version | Anonymous | 04/20/05 | 4 | |
| OO Simple version (not using Interfaces) | Luis Carlos F. Dias | 09/04/05 | 0 | |
| OO version (with interface) | Luis Carlos F. Dias | 09/05/05 | 0 |
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!
Comments