-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathequation.html
50 lines (43 loc) · 1.4 KB
/
equation.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
<!DOCTYPE html>
<html lang="fr" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<div class="">
Soit trois équations à trois inconnues <br>
Changez les coéfficient pour trouver les solutions
</div>
<div class="">
<p>
<span contenteditable="true" class="a1">a</span>x +
<span contenteditable="true" class="b1">b</span>y +
<span contenteditable="true" class="c1">c</span>z =
<span contenteditable="true" class="d1">d</span>
</p>
<p>
<span contenteditable="true" class="a2">a</span>x +
<span contenteditable="true" class="b2">b</span>y +
<span contenteditable="true" class="c2">c</span>z =
<span contenteditable="true" class="d2">d</span>
</p>
<p>
<span contenteditable="true" class="a3">a</span>x +
<span contenteditable="true" class="b3">b</span>y +
<span contenteditable="true" class="c3">c</span>z =
<span contenteditable="true" class="d3">d</span>
</p>
<p>
<button type="submit" name="button" id='resoudre'>Resoudre</button>
</p>
<p>
x = <span class="x"></span> <br>
y = <span class="y"></span> <br>
z = <span class="z"></span>
</p>
</div>
<script src="jquery.js" charset="utf-8"></script>
<script src="inconnues.js" charset="utf-8"></script>
</body>
</html>