1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| <body>
<header>
<h1>INTEGRALE</h1>
</header>
<section>
<form name="formular">
<p>
<table>
<tr>
<td><label for="fonction">Quelle fonction voulez-vous choisir ? </label></td>
<td><select name="fonction" id="fonction">
<option value="f1">(x²+2x+1)*sin(3x)</option>
<option value="f2">arctg</option>
<option value="f3">x/(1+x)</option>
<option value="f4">exp(2x+1)*x</option>
</select></td>
</tr>
<tr>
<td><label for="bInf">Quelle est la borne inférieure ? </label></td>
<td><input type="text" name="bInf" id="bInf" /></td>
</tr>
<tr>
<td><label for="bSup">Quelle est la borne supérieure ? </label></td>
<td><input type="text" name="bSup" id="bSup" /></td>
</tr>
<tr>
<td><label for="point">Quelle est le nombre de points ? </label></td>
<td><input type="number" name="point" id="point" /></td>
</tr>
<tr>
<td><label for="solution">Solution ?</label></td>
<td><input type="text" name="solution" id="solution" /></td>
</table>
<input id="effectuer" type="button" name="effectuer" value="Effectuer" onclick="submit()">
</p>
</form>
</section>
</body> |