Jump to content

Just for fun.


jonsjava

Recommended Posts

Improve the script (either by making it more complex, or more simple):

<?php
$count = 99;
while ($count > 0){
print "<pre>".$count." bottles of beer on the wall, ".$count." bottles of beer.\n
Take one down and pass it around, ".--$count." bottles of beer on the wall.\n\n";
}

print "<pre>No more bottles of beer on the wall, no more bottles of beer.\n
Go to the store and buy some more, 99 bottles of beer on the wall.";
?>

Link to comment
Share on other sites

here

<pre>
<?php
$count = 99;
while ($count > 0) {
switch($count){
	case 1:
		$bottle_1 = "bottle";
		$bottle_2 = "bottles";
		$one_it = "it";
		break;
	default :
		$bottle_1 = "bottles";
		$bottle_2 = "bottles";
		$one_it = "one";
		break;
	case 2:
		$bottle_2 = "bottle";
}
print "{$count} {$bottle_1} of beer on the wall, {$count} {$bottle_1} of beer.
Take {$one_it} down and pass it around, " . --$count . " {$bottle_2} of beer on the wall.\n\n";
}
print "<pre>No more bottles of beer on the wall, no more bottles of beer.\n
Go to the store and buy some more, 99 bottles of beer on the wall.";
?>
</pre>

 

Scott.

Link to comment
Share on other sites

made it shorter again

switch($count){
	default :
		$bottle_1 = "bottles";
		$bottle_2 = "bottles";
		$one_it = "one";
		break;
	case 1:
		$bottle_1 = "bottle";
		$one_it = "it";
		break;

	case 2:
		$bottle_2 = "bottle";
}

 

Scott.

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.