Skip to content
Snippets Groups Projects
Commit d3c78f61 authored by KAPIAS NICOLAS's avatar KAPIAS NICOLAS
Browse files

exercice 2 13/01/2025

parent 960b12c3
No related merge requests found
<html>
<head>
<title>M2GPI</title>
</head>
<body>
<table>
<thead>
<tr>
<th>Factoriel</th>
<th>Résultat</th>
<th>Type</th>
</tr>
</thead>
<tbody>
<?php
for ($i=0; $i < 100; $i++) {
$f = 1;
for ($n=$i; $n > 0; $n--) {
$f = $f * $n;
}
echo "
<tr>
<td>" . $i . "</td>
<td>" . $f . "</td>
<td>" . gettype($f) . "</td>
</tr>";
}
?>
</tbody>
</table>
</body>
</html>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment