PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php $x = 125000; // само число $min = 13000; // минимум $max = 14500; // максимум $i=1; do { $temp[$i] = rand($min, $max); if ($x - $temp[$i] >=0) { $x = $x - $temp[$i]; $i++; } } while ($x > $min); $temp[$i] = $x; print_r($temp); print_r('Сумма: '.array_sum($temp));
Show:  
Copy Clear