-
Notifications
You must be signed in to change notification settings - Fork 0
/
eje.html
47 lines (33 loc) · 1.15 KB
/
eje.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
<!DOCTYPE html>
<html>
<head>
<title>PLANIFICADOR</title>
</head>
<body>
<h1>Planificador con prioridad</h1>
<p>eso</p>
<br>
<canvas id="lienzo" width="200" height="100" style="border:1px solid #2f5f1f;">></canvas>
<br>
</body>
<button type="buttFCFS">FCFS</button>
<button type="buttSFJ">SFJ</button>
<button type="buttSRTN">SRTN</button>
<button type="buttRR">RR</button>
<br>
Entrada de cada procesID:
<br>
Long - inicio - prioridad
<br>
1-<input id="long1" type="text" size="5" /><input id="inicio1" type="text" size="5" /><input id="prior1" type="text" size="5" />
<br>
2-<input id="long2" type="text" size="5" /><input id="inicio2" type="text" size="5" /><input id="prior2" type="text" size="5" />
<br>
3-<input id="long3" type="text" size="5" /><input id="inicio3" type="text" size="5" /><input id="prior3" type="text" size="5" />
<br>
4-<input id="long4" type="text" size="5" /><input id="inicio4" type="text" size="5" /><input id="prior4" type="text" size="5" />
<br>
5-<input id="long5" type="text" size="5" /><input id="inicio5" type="text" size="5" /><input id="prior5" type="text" size="5" />
<br>
<script src="script.js"></script>
</html>