-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2.html
More file actions
80 lines (62 loc) · 3.03 KB
/
2.html
File metadata and controls
80 lines (62 loc) · 3.03 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
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
<!DOCTYPE HTML>
<html lang='es'>
<head>
<meta charset='UTF-8' />
<meta name ='viewport' content ='width=device-width, initial scale=1.0' />
<title>Calculadora cientifica</title>
<link rel='stylesheet' type='text/css' href='CalculadoraCientifica.css' />
</head>
<body>
<h1>Calculadora científica</h1>
<form action='#' method='post'>
<!--pantalla-->
<label for='texto'>pantalla</label>
<input type='text' id='texto' disabled name='expresion' value='0'>
<input type='submit' name='memoria' value='MC' disabled>
<input type='submit' name='memoria' value='MR' disabled>
<input type='submit' name='mMas' value='M+'>
<input type='submit' name='mMenos' value='M-'>
<input type='submit' name='mrc' value='MS'>
<input type='submit' name='grad' value='grad'>
<input type='submit' name='rad' value='rad'>
<input type='submit' name='sinh' value='sinh'>
<input type='submit' name='cosh' value='cosh'>
<input type='submit' name='tanh' value='tanh'>
<input type='submit' name='cuadrado' value='x^2'>
<input type='submit' name='elevado' value='x^y'>
<input type='submit' name='sin' value='sin'>
<input type='submit' name='cos' value='cos' >
<input type='submit' name='tan' value='tan'>
<input type='submit' name='partidoX' value='1/x'>
<input type='submit' name='elevadoX' value='10^x'>
<input type='submit' name='log' value='log'>
<input type='submit' name='exp' value='exp' >
<input type='submit' name='mod' value='mod'>
<input type='submit' name='raiz' value='√'>
<input type='submit' name='e' value='e'>
<input type='submit' name='CE' value='CE'>
<input type='submit' name='borrar' value='⌫'>
<input type='submit' name='division' value='÷'>
<input type='submit' name='pi' value='Π'>
<input type='submit' name='7' value='7'>
<input type='submit' name='8' value='8'>
<input type='submit' name='9' value='9'>
<input type='submit' name='multiplicacion' value='x'>
<input type='submit' name='factorial' value='n!'>
<input type='submit' name='4' value='4'>
<input type='submit' name='5' value='5'>
<input type='submit' name='6' value='6'>
<input type='submit' name='resta' value='-'>
<input type='submit' name='cubico' value='x^3'>
<input type='submit' name='1' value='1' >
<input type='submit' name='2' value='2'>
<input type='submit' name='3' value='3'>
<input type='submit' name='suma' value='+'>
<input type='submit' name='abrirParentesis' value='(' >
<input type='submit' name='cerrarParentesis' value=')'>
<input type='submit' name='0' value='0'>
<input type='submit' name='punto' value=','>
<input type='submit' name='igual' value='='>
</form>
</body>
</html>