我有以下代碼給出了一個隨機數學問題,我試圖從rand標籤只得到偶數,並使第一個數字高於第二個數字。php隨機兩個偶數與第一個更高的值
<?php
//set the sum
$operarors = array('+','-');
$operator = $operarors[rand(0,1)];
//random the numbers
$numberone = rand(4,10);
$numbertwo = rand(2,4);
//get the answer
if ($operator == '-') {
$answer1 = $numberone - $numbertwo;
}
if ($operator == '+') {
$answer1 = $numberone + $numbertwo;
}
if ($operator == 'x') {
$answer1 = $numberone * $numbertwo;
}
if ($operator == '/') {
$answer1 = $numberone/$numbertwo;
}
echo "Question: $numberone $operator $numbertwo<br>";
echo "<br>";
echo $answer1;
?>
我已經看過了random function,似乎無法找到我需要這兩個問題
要解決的第一個數字的值比第二我已經告訴它更高的信息第二
$numberone = rand(4,10);
$numbertwo = rand(2,4);
但對於這個代碼的功能4和10,並要求2和4之間的隨機數之間的隨機數我想它,我不需要做到這一點。
這背後的原因是,如果第一個數字是4,第二個數字是5,答案是-1。 這將是我的小女兒來幫助她的數學,並沒有教 - 數字這個早期:)
隨機偶數我已經結束了我的想法,因爲我試過google找到回答這個問題,並沒有找到任何關於
你proberbly可以告訴我不是在PHP方面的專家,所以請給多一點expernation工作,這樣我就可以達到更好的知識提前
感謝
要生成隨機偶數 - 由2 – zerkms 2014-09-21 22:49:02