Create a vector with 7 integers. Print the largest and smallest, without ordering, the percentage of even numbers. Only that percentage is missing.
echo "Maior valor: ".max($num);
echo "</br> Menor valor: ".min($num)."</br>";
foreach ($num as $numero){
echo "$numero ";
}
?>
</body>