-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalc_permutaciones.html
More file actions
32 lines (32 loc) · 1.01 KB
/
calc_permutaciones.html
File metadata and controls
32 lines (32 loc) · 1.01 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
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/bien.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
<title>Document</title>
</head>
<body>
<nav class="menu">
<div>
<a href="index.html" class="logo">
<img src=" img/logo.svg" alt="Logo" width="150px">
</a>
<h3>Herramientas</h3>
</div>
</nav>
<div class="contenido">
<h2>Calculadora de Permutaciones y Combinaciones</h2>
<label for="n">Ingrese n:</label>
<input type="number" id="n" min="1" required><br>
<label for="r">Ingrese r (opcional):</label>
<input type="number" id="r" min="1"><br>
<button onclick="calcular()">Calcular</button>
<h3>Resultados:</h3>
<div id="resultado"></div>
</div>
<script src=" js/analiComb.js"></script>
<script src="./js/menu.js"></script>
</body>
</html>