Jump to content

[SOLVED] drawing numbers


kryppienation

Recommended Posts

I am trying to draw 5 random numbers between 1 and 99, the problem I'm having is trying to make sure all the numbers are different. I am wondering if someone can help me actually have this check to make sure that all 5 numbers are different or even if there is some better way for me to accomplish this.

 

<?php

$C = 0;

while($C <= 4){

$drawing = rand(1, 99);

echo ''.$drawing.'.';

$C++;
}

?>

Link to comment
Share on other sites

<?php

$C = 0;

while($C <= 4){

$drawing = rand(1, 99);
$drawings[$C] = $drawing;
for ($n = 0; $n <= $C; $n++)
{
if ($drawing==$drawings[$n])
{
while ($drawing==$drawings[$n])
{
$drawing = rand(1, 99);
$drawings[$C] = $drawing;
}
}
}

echo ''.$drawing.'.';

$C++;
}

?>

 

There, I think that should work

Link to comment
Share on other sites

$numberset = range(1,99);
shuffle($numberset);
for ($i = 1; $i <= 5; $i++) {
   echo array_pop($numberset).'<br />';
}

 

Thank you very much this seems to work excellent, I'm wondering tho, is there anyway that i can assign a variable to each number? I would really like to be able to work with these 5 numbers as separate variables so that they can be called upon later in the code.

Link to comment
Share on other sites

that's simply a matter of assigning the array_pop() expression to a variable instead of echoing it:

 

<?php
$numberset = range(1,99);
shuffle($numberset);
$numbers = array();
for ($i = 1; $i <= 5; $i++) {
   $numbers[] = array_pop($numberset);
}
echo '<pre>'.print_r($numbers, TRUE).'</pre>';
?>

Link to comment
Share on other sites

Thank you very much this seems to work excellent, I'm wondering tho, is there anyway that i can assign a variable to each number? I would really like to be able to work with these 5 numbers as separate variables so that they can be called upon later in the code.

$numberset = range(1,99);
shuffle($numberset);
for ($i = 1; $i <= 5; $i++) {
   $var = 'number'.$i;
   $$var = array_pop($numberset);
}
echo $number1.' '.$number2.' '.$number3.' '.$number4.' '.$number5.'<br />';

But you'd be better assigning the values into an array

$numberset = range(1,99);
shuffle($numberset);
$numbers = array_slice($numberset,0,5);

echo $numbers[0].' '.$numbers[1].' '.$numbers[2].' '.$numbers[3].' '.$numbers[4].'<br />';

 

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.