Skip to content

Instantly share code, notes, and snippets.

@guillaumebdx
Created October 3, 2017 12:39
Show Gist options
  • Save guillaumebdx/18aa178740ed66d344f5224d8a0c26c5 to your computer and use it in GitHub Desktop.
Save guillaumebdx/18aa178740ed66d344f5224d8a0c26c5 to your computer and use it in GitHub Desktop.
<?php
/**
* Created by PhpStorm.
* User: romain
* Date: 22/02/16
* Time: 10:13
*/
$students = [
"Emmanuel" => 42,
"Thierry" => 51,
"Pascal" => 45,
"Eric" => 48,
"Nicolas" => 19
];
$ages = [42, 51, 45, 48, 19];
$sum = 0;
for ($i=0; $i<count($ages); $i++)
{
$sum += $ages[$i%5];
}
$average = $sum/count($ages);
?>
<!DOCTYPE html>
<html>
<head>
<title>Compute average student age</title>
</head>
<body>
<table>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
<?php
foreach ($students as $key=>$value)
{
echo "<tr>\n<td>";
echo $key;
echo "</td>\n<td>";
echo $value;
echo "</td>\n</tr>";
}
?>
</table>
<p>Average age : <?php echo $average; ?></p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment