You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
2.1 KiB

2 years ago
<!DOCTYPE html>
<html>
2 years ago
2 years ago
<head>
<meta charset="utf-8" \>
<title>Quelques données</title>
2 years ago
<link href="../styles/main.css" rel="stylesheet" type="text/css" />
<link href="../styles/donnees.css" rel="stylesheet" type="text/css" />
2 years ago
</head>
2 years ago
2 years ago
<body>
2 years ago
<div class="header">
<div class="title">
<h1>LangProg - Données</h1>
<img src="../img/ProgrammingLanguage1-1.jpg" alt="ImgTitle" />
</div>
<nav>
<a href="./index.html">Menu Principal</a>
<a href="pages/galerie.html">Galerie</a>
<a href="pages/donnees.html">Données</a>
</nav>
</div>
<div class="donnees">
<table>
2 years ago
<tr>
<th></th>
<th><img src="../img/The_C_Programming_Language_logo.svg.png" alt="C"
width="40" height="40"></th>
<th><img src="../img/ISO_C++_Logo.svg.png" alt="C++"
width="40" height="40"></th>
<th><img src="../img/1024px-C_Sharp_wordmark.svg.png" alt="C#"
width="40" height="40"</th>
</tr>
<tr>
<th>Première version</th>
<td>1972</td>
<td>1985</td>
<td rowspan="2">Inconnu</td>
</tr>
<tr>
<th>Autheur(s)</th>
<td>Dennis Ritchie, Brian Kernighan</td>
<td>Bjarne Stroustrup</td>
</tr>
<tr>
<th>Paradigme</th>
<td>Impératif, procédural, structuré</td>
<td>générique, orienté objet, procédural</td>
<td>Structuré, impératif, orienté objet</td>
</tr>
<tr>
<th>Typage</th>
<td colspan="2">Inconnu</td>
<td>Statique, fort, nominatif</td>
</tr>
<tr>
<th>Influance</th>
<td>BCPL, B, Algol 68, Fortran</td>
<td>C, Simula, Ada 83, Algol 68, CLU, ML</td>
<td>C++, Java</td>
</tr>
</table>
</div>
<footer>
<p>Auteur: Alexandre Agostinho (TP1)</p>
<p><a href="mailto:alexandre.agostinho@etu.uca.fr">alexandre.agostinho@etu.uca.fr</a></p>
</footer>
</body>
</html>