tdphp/td3/6.php
2023-03-06 06:21:44 -08:00

54 lines
No EOL
1.3 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
$tableau = array();
// Écrire un programme permettant de créer un tableau dentiers variant de 0 à 63 (utiliser range() ),
foreach (range(1, 63) as $val) {
array_push($tableau, $val);
}
// puis de créer un second tableau à partir du premier avec de nombres variant de 0 à 6.3.
$tableau2 = array();
foreach ($tableau as $identifiant => $valeur) {
$tableau2[$identifiant] = $valeur / 10;
}
// Créer ensuite un troisième tableau associatif dont les clés X varient de 0 à 6.3 et dont les valeurs sont sin(X).
$tableau3 = array();
foreach ($tableau2 as $identifiant => $valeur) {
$tableau3[$valeur] = sin($valeur);
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
table * {
border: 1px solid red;
}
</style>
</head>
<body>
<table>
<tr>
<th>Clé</th>
<th>Valeur</th>
</tr>
<?php
//Afficher le tableau de valeurs dans un tableau HTML <table>.
foreach ($tableau3 as $identifiant => $valeur) {
echo "<tr><td>$identifiant</td><td>$valeur</td></tr>";
}
?>
</table>
</body>
</html>