-
Notifications
You must be signed in to change notification settings - Fork 0
/
CalculadoraCientifica.html
92 lines (72 loc) · 4.56 KB
/
CalculadoraCientifica.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
<!DOCTYPE HTML>
<html lang="es">
<head>
<!-- Datos que describen el documento -->
<meta charset="UTF-8" />
<title>Simulador de una calculadora científica</title>
<link rel="stylesheet" type="text/css" href="CalculadoraCientifica.css" />
<meta name ="author" content ="Pablo Argallero Fernández" />
<meta name ="description" content ="Simulador de una calculadora científica" />
<meta name ="keywords" content ="calculadora,cientifica,simulador" />
<meta name ="viewport" content ="width=device-width, initial-scale=1.0" />
<script src="CalculadoraCientifica.js"></script>
</head>
<body>
<h1>Simulador de calculadora científica</h1>
<section>
<!-- Contiene la cuenta entera hasta el momento -->
<label for="acumuladorCuenta">Operacion actual<input type="text" id="acumuladorCuenta" readonly> </label>
<!-- Contiene los valores que el usuario acaba de introducir -->
<label for="pantalla">Pantalla calculadora científica<input type="text" id="pantalla" readonly></label>
<!--Introducimos los botones deg hyp y F-E -->
<input type="button" value="rad" onclick="calculadora.changeDegRad()">
<input type="button" value="hyp" onclick="calculadora.hyper()">
<input type="button" value="F-E" onclick="calculadora.notacionCientifica()">
<input type="button" value="MC" onclick="calculadora.mc()">
<input type="button" value="MR" onclick="calculadora.mrc()">
<input type="button" value="M+" onclick="calculadora.mMas()">
<input type="button" value="M-" onclick="calculadora.mMenos()">
<input type="button" value="MS" onclick="calculadora.mStore()">
<input type="button" value="x^2" onclick="calculadora.pow2()" >
<input type="button" value="x^y" onclick="calculadora.powY()">
<input type="button" value="sin" onclick="calculadora.sin()">
<input type="button" value="cos" onclick="calculadora.cos()">
<input type="button" value="tan" onclick="calculadora.tan()">
<input type="button" value="√" onclick="calculadora.raiz()">
<input type="button" value="10^x" onclick="calculadora.diezPow()" >
<input type="button" value="log" onclick="calculadora.log()">
<input type="button" value="exp" onclick="calculadora.exp()">
<input type="button" value="mod" onclick="calculadora.mod()">
<input type="button" value="▲" onclick="calculadora.alt()">
<input type="button" value="CE" onclick="calculadora.ce()">
<input type="button" value="C" onclick="calculadora.c()">
<input type="button" value="del" onclick="calculadora.del()">
<input type="button" value="/" onclick="calculadora.insertarOperacionSimple('/')">
<input type="button" value="pi" onclick="calculadora.pi()" >
<input type="button" value="7" onclick="calculadora.digitos('7')">
<input type="button" value="8" onclick="calculadora.digitos('8')">
<input type="button" value="9" onclick="calculadora.digitos('9')">
<input type="button" value="x" onclick="calculadora.insertarOperacionSimple('*')">
<input type="button" value="n!" onclick="calculadora.fact()">
<input type="button" value="4" onclick="calculadora.digitos('4')">
<input type="button" value="5" onclick="calculadora.digitos('5')">
<input type="button" value="6" onclick="calculadora.digitos('6')">
<input type="button" value="-" onclick="calculadora.insertarOperacionSimple('-')">
<input type="button" value="+/-" onclick="calculadora.cambioDeSigno()">
<input type="button" value="1" onclick="calculadora.digitos('1')">
<input type="button" value="2" onclick="calculadora.digitos('2')">
<input type="button" value="3" onclick="calculadora.digitos('3')">
<input type="button" value="+" onclick="calculadora.insertarOperacionSimple('+')">
<input type="button" value="(" onclick="calculadora.leftParentesis()">
<input type="button" value=")" onclick="calculadora.rightParentesis()">
<input type="button" value="0" onclick="calculadora.digitos('0')">
<input type="button" value="." onclick="calculadora.punto()">
<input type="button" value="=" onclick="calculadora.igual()">
</section>
<footer>
<p>Pablo Argallero Fernández - UO283216</p>
<img src = "multimedia/HTML5.png" alt = "HTML válido"/>
<img src = "multimedia/CSS3.png" alt = "CSS válido"/>
</footer>
</body>
</html>