Language EDI C
| Date: | 04/20/05 |
| Author: | Kurt Svensson |
| URL: | n/a |
| Comments: | 0 |
| Info: | n/a |
| Score: |
// Author: Kurt Svensson, www.inobiz.se, 2003-05-23
const drinkingtime = -300; // Milliseconds
main()
{
for (integer bottles = 99; bottles; )
{
println (bottles & txt(bottles) & " of beer on the wall");
println (bottles-- & txt(bottles) & " of beer.");
println ("Take one down, pass it around,\r\n");
sleep (drinkingtime);
}
println ("Now they are all gone");
}
string txt (integer bottles)
{
string b = " bottle";
b &= bottles > 1 ? "s";
return b;
}
// end-of-program
Download Source | Write Comment
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