Show sourcecode
The following files exists in this folder. Click to view.
Webserver1/Ovningar/Repetition/
rep1.php
rep2.php
rep3b.php
rep3c.php
rep4.php
rep5.php
rep3b.php
10 lines UTF-8 Windows (CRLF)
<?php
function medelvärde(&$array) {
$sum = 0;
for ($i=0;$i<count($array);$i++) {
$sum += $array[$i];
}
return $sum / count($array);
}
?>