-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (24 loc) · 1.16 KB
/
index.html
File metadata and controls
29 lines (24 loc) · 1.16 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script src="TestJavascript.js" type="text/javascript"></script>
</head>
<body>
<p> Test 1: Calcular el área de un triangulo: </p>
<input type="button" value="Area de triangulo" onclick="area_triangulo(50,20) " />
<p> Test 2: Número mayor de tres números (Ej: 4,20, 6): </p>
<input type="button" value="Mayor de tres números" onclick="mayor_number(4,20,6) " />
<p> Test 3: Apto para votar (Ej: Jeisson, 18): </p>
<input type="button" value="Apto para votar" onclick="apto_voto('Jeisson', 18) " />
<p> Test 4: Día habil (Ej: Con el día actual): </p>
<input type="button" value="Día habil" onclick="dia_habil() " />
<p> Test 5: Promedio de notas del estudiante : </p>
<input type="button" value="Promedio de notas" onclick="notas_estu(3.5,2.5,5) " />
<p> Test 6: Suma de arreglos : </p>
<input type="button" value="Suma de numeros" onclick="suma_array(num=[4,5,6,7]) " />
</body>
</html>