-
Notifications
You must be signed in to change notification settings - Fork 0
/
numero_perfecto.html
89 lines (74 loc) · 3.72 KB
/
numero_perfecto.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<title>7- Primeros tres numeros perfectos</title>
<!-- CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
</head>
<body>
<!-- Dropdown Structure -->
<ul id="dropdown1" class="dropdown-content">
<li><a href="salarioactual.html">Salario</a></li>
<li><a href="pi.html">Calcular Pi</a></li>
<li><a href="cuadrado_magico.html">Cuadrado magico</a></li>
<li><a href="sumatoria.html">Sumatoria e^x</a></li>
<li><a href="fibonacci.html">Fibonacci</a></li>
<li><a href="MCD.html">Maximo Comun Divisor</a></li>
<li><a href="sumatoria2.html">Sumatoria</a></li>
<li><a href="sumatoria3.html">Sumatoria serie</a></li>
</ul>
<ul id="dropdown2" class="dropdown-content">
<li><a href="domingo.html">Domingo de Pascua</a></li>
<li><a href="asterisco.html">Renglones con asterisco</a></li>
</ul>
<ul id="dropdown3" class="dropdown-content">
<li><a href="numeros.html">Menor, mayor y media</a></li>
<li><a href="numero_perfecto.html">Primeros tres numeros pefectos</a></li>
<li><a href="primo.html">Numero primo</a></li>
<li><a href="numero_perfecto2.html">Numero pefecto</a></li>
<li><a href="numero_menor.html">Numero menor</a></li>
</ul>
<ul id="dropdown4" class="dropdown-content">
<li><a href="index.html">Inicio</a></li>
</ul>
<nav>
<div class="nav-wrapper">
<a href="#!" class="brand-logo"></a>
<ul class="right hide-on-med-and-down">
<li><a class="dropdown-trigger" href="#!" data-target="dropdown4" >Incio<i class="material-icons right">arrow_drop_down</i></a></li>
<li><a class="dropdown-trigger" href="#!" data-target="dropdown1">Formulas<i class="material-icons right">arrow_drop_down</i></a></li>
<li><a class="dropdown-trigger" href="#!" data-target="dropdown2">Fecha<i class="material-icons right">arrow_drop_down</i></a></li>
<li><a class="dropdown-trigger" href="#!" data-target="dropdown3">Numeros<i class="material-icons right">arrow_drop_down</i></a></li>
</ul>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col s3"></div>
<p>Los tres primeros numeros perfectos son:</p><br>
<div class="col s5"></div>
<a class="waves-effect waves-light btn" id="boton">Mostrar</a><br><br>
<input type="text" id="resultado" size="40">
</div>
</div>
</div>
<br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br>
<footer class="page-footer orange">
<div class="footer-copyright">
<div class="container">
Ingrid Juliana Cadavid Villa<br>
Made by <a class="orange-text text-lighten-3" href="http://materializecss.com">Materialize</a>
</div>
</div>
</footer>
<!-- Scripts-->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="js/materialize.js"></script>
<script src="js/init.js"></script>
<script src="js/perfecto.js"></script>
</body>
</html>