<?php$resultado = array();for ($i = 0; $i <= 5; $i++) { array_push($resultado, rand(1, 60));} print_r($resultado); sort($resultado); print_r($resultado);
Standard input is empty
Array ( [0] => 5 [1] => 36 [2] => 2 [3] => 59 [4] => 48 [5] => 4 ) Array ( [0] => 2 [1] => 4 [2] => 5 [3] => 36 [4] => 48 [5] => 59 )
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!