Самый День
Оракул
(99750)
3 года назад
<?php
for ( $i=0; $i < 30; $i++){ $arr[] = rand( -10, 10 ); }
$count = 0;
while ( list (, $val) = each ($arr) ){
if( $val > 0 ) { $count++; }
$pole .= $val."; ";
}
print "positive numbers: " . $count . "<br>\n";
print $pole;
?>