-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (89 loc) · 3.34 KB
/
index.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Practico 6</title>
<script src="js/libreria.js"></script>
<script src="js/codigo.js"></script>
</head>
<body>
<h5>Ejercicio 1</h5>
<label for="nombre1">Nombre</label>
<input type="text" id="nombre1"> <br>
<input type="button" id="btnEjercicio1" value="Contar Letra">
<p id="pResultado1"></p>
<h5>Ejercicio 2</h5>
<label for="numero2">Números</label>
<input type="text" id="numero2"> <br>
<input type="button" id="btnEjercicio2" value="Ingresar valor">
<input type="button" id="btnEjercicioN2" value="Mostrar mayor">
<p id="pResultado2"></p>
<p id="pResultadoN2"></p>
<h5>Ejercicio 3</h5>
<label for="palabra3">Palabras</label>
<input type="text" id="palabra3"> <br>
<input type="button" id="btnEjercicio3" value="Ingresar valor">
<input type="button" id="btnEjercicioN3" value="Mostrar lista">
<p id="pResultado3"></p>
<p id="pResultadoN3"></p>
<h5>Ejercicio 4</h5>
<label for="numero4">Números</label>
<input type="text" id="numero4"> <br>
<input type="button" id="btnEjercicio4" value="Ingresar valor">
<input type="button" id="btnEjercicioN4" value="Calcular promedio">
<p id="pResultado4"></p>
<h5>Ejercicio 5</h5>
<label for="numero5">Números</label>
<input type="text" id="numero5"> <br>
<input type="button" id="btnEjercicio5" value="Ingresar número">
<p id="pResultado5"></p>
<h5>Ejercicio 6</h5>
<label for="alias6">Ingresar alias</label>
<input type="text" id="alias6"> <br>
<input type="button" id="btnEjercicio6" value="Ingresar alias">
<p id="pResultado6"></p>
<h5>Ejercicio 7</h5>
<label for="nombres7">Ingresar nombres</label>
<input type="text" id="nombres7"> <br> <br>
<input type="button" id="btnEjercicio7" value="Ingresar valor">
<p id="pResultado7"></p>
<h9>Parte 2</h9> <br><br>
<label for="numeros7">Ingresar número</label>
<input type="text" id="numeros7"> <br>
<input type="button" id="btnEjercicioN7" value="Ingresar posicion de la lista">
<p id="pResultadoN7"></p>
<p id="pResultadoNE7"></p>
<h9>Parte 3</h9> <br><br>
<label for="nombreB7">Nombre a buscar</label>
<input type="text" id="nombreB7">
<label for="nombreNv7">Nuevo nombre a remplazar</label>
<input type="text" id="nombreNv7">
<input type="button" id="btnEjercicioF7" value="Buscar elemento">
<p id="pResultadoEj7"></p>
<h5>Ejercicio 8</h5>
<input type="button" id="btnEjercicio8" value="Mostrar array Fibonacci">
<p id="pResultado8"></p>
<h5>Ejercicio 9</h5>
<input type="button" id="btnEjercicio9" value="Mostrar array Fibonacci">
<p id="pResultado9"></p>
<h5>Ejercicio 10</h5>
<label for="texto10">Ingresar Texto</label>
<input type="text" id="texto10"><br>
<input type="button" id="btnEjercicio10" value="Agregar">
<input type="button" id="btnEjercicioN10" value="Eliminar">
<p id="pResultado10"></p>
<h5>Ejercicio 11</h5>
<input type="button" id="btnEjercicio11" value="Mostrar array sin repeticiones">
<p id="pResultado11"></p>
<h5>Ejercicio 12</h5>
<label for="texto12">Ingresar Letra</label>
<input type="text" id="texto12"><br>
<input type="button" id="btnEjercicio12" value="Mostrar mascota">
<p id="pResultado12"></p>
<h5>Ejercicio 13</h5>
<input type="button" id="btnEjercicio13" value="Mostrar array mayores a 20">
<p id="pResultado13"></p>
</body>
</html>