Show sourcecode
The following files exists in this folder. Click to view.
webbsrvprg/exercises/repetition/
include1.php
index.php
ovn_rep1 copy.php
ovn_rep1.php
ovn_rep2.php
ovn_rep3.php
ovn_rep5.php
include1.php
10 lines ASCII Windows (CRLF)
<?php
function get_mean($arr){
$total = 0;
for ($i=0;$i<count($arr);$i++){
$total += $arr[$i];
}
$mean = $total/count($arr);
return($mean);
}
?>