Jump to content

Code that need help


cherylinn

Recommended Posts

Hi, i have an assignment regarding php. The question is to write a program, using for loop, to generate 30 random number between 100 and 150 inclusive. The program should display how many of these number are larger than or equal to 120 and how many are smaller than 120.

Sample output is like this

100

120

150

200

etc.....

number of number larger than or equal to 120 : 3

number of number smaller than 120: 1

I know how to generate the random number but how to generate the code for the number of number larger than or equal to 120 ..etc .

 

Link to comment
https://forums.phpfreaks.com/topic/242175-code-that-need-help/
Share on other sites

$greatNumbers = $lesserNumbers = $i = 0;
while ($i < 30)
{
$number = rand(100, 150);
echo $number . '<br>';
if ($number >= 120)
	$greatNumbers++;
else
	$lesserNumbers++;
$i++;
}
echo 'Greater or equal to 120: ' . $greatNumbers . '<br>';
echo 'Lesser than 120: ' . $lesserNumbers . '<br>';

Link to comment
https://forums.phpfreaks.com/topic/242175-code-that-need-help/#findComment-1243670
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.