<?php
function moyenne($tab){
  return array_sum($tab)/count($tab);
}
?>