This repository has been archived by the owner on Jan 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
equazioni mondini.html
51 lines (49 loc) · 1.57 KB
/
equazioni mondini.html
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
39
40
41
42
43
44
45
46
47
48
49
50
51
<html><head>
<form name="equa" action="">
<fieldset>
<legend>
Risoluzione di un'equazione di primo grado del tipo <i>ax</i> + <i>b</i> = 0
</legend><br>
<label>Coefficiente a = </label>
<input type="text" class="input1" name="a1" value="" onClick="document.getElementById('ris').innerHTML =''"><br />
<label>Termine noto b = </label>
<input type="text" class="input1" name="b1" value="" onClick="document.getElementById('ris').innerHTML =''"><br />
<p>
<span id="ris"></span>
</fieldset></p>
<p> <input type="button" class="input2" value="Risolvi" onclick="esegui()"><input type="reset" class="input2" value="Aggiorna" name="no">
</p>
</form>
<script type="text/javascript">
var forma=''
function calcola() {
forma =a + 'x';
if (b>=0){forma+='+'}
forma+=b
forma+=' = 0'
if (a==0) {
if (b==0) {
document.getElementById('ris').innerHTML = forma + ' è un\'equazione indeterminata'
} else {
document.getElementById('ris').innerHTML = forma + ' è un\'equazione impossibile'
}
}
else {
x=-b/a;
document.getElementById('ris').innerHTML = forma + ' è un\'equazione determinata.<br> La soluzione è ' + x;
}
}
function esegui() {
a=Number(document.equa.a1.value);
b=Number(document.equa.b1.value);
if (a==0){document.equa.a1.value = 0}
if (b==0){document.equa.b1.value = 0}
if (isNaN(a) || isNaN(b)) {
document.getElementById('ris').innerHTML = 'Non hai immesso valori validi'
} else {
calcola();
}
}
</script>
<td><a href="Lavoro di gruppo.html">Torna alla home page</a></td>
</body></html>