Código de JavaScript - Calculadora super basica

Requerimientos

Navegador de internet Actualizado

Si es de tu ayuda y quieres aprender mas visita:
https://www.youtube.com/channel/UCWSKQyNDhvBVrddHIhzx5Zg?view_as=subscriber

0.5 Inicio

Actualizado el 18 de Abril del 2017 (Publicado el 8 de Marzo del 2017)gráfica de visualizaciones de la versión: 0.5 Inicio
517 visualizaciones desde el 8 de Marzo del 2017

1.0
estrellaestrellaestrellaestrellaestrella(2)

Actualizado el 20 de Junio del 2017 (Publicado el 8 de Marzo del 2017)gráfica de visualizaciones de la versión: 1.0
10.291 visualizaciones desde el 8 de Marzo del 2017
estrellaestrellaestrellaestrellaestrella
estrellaestrellaestrellaestrella
estrellaestrellaestrella
estrellaestrella
estrella

Mejoras de diseño
Captura
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
<!DOCTYPE html>
<html>
<head>
<title>Calculadora basica</title>
<style>
	form{
		background-color:white;
	}
	input[type="text"]{
		background-color:black;
		border:0px;
		width:250px;
		height: 40px;
		font-size: 20px;
		color: white;
		margin-bottom: 5px;
	}
	input[type="button"]{
		width:60px;border:0px;
		height: 60px;
		color: white;
		background-color:cornflowerblue;
		font-size: 18px;
		font-weight: bold;
		font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
		margin-bottom: 5px;
        }
	body{
		background-color:#f1f1f1;
	}
</style>
</head>
<body>
<center>
<h1>Calculadora Basica</h1>
<form name="f1"><br>
<input type="text" name="txtcaja"><br>
<input type="button" onclick="escribir('1')" value="1">
<input type="button" onclick="escribir('2')" value="2">
<input type="button" onclick="escribir('3')" value="3"> <input type="button" onclick="escribir('+')" value="+"><br>
<input type="button" onclick="escribir('4')" value="4">
<input type="button" onclick="escribir('5')" value="5">
<input type="button" onclick="escribir('6')" value="6"> <input type="button" onclick="escribir('-')" value="-"><br>
<input type="button" onclick="escribir('7')" value="7">
<input type="button" onclick="escribir('8')" value="8">
<input type="button" onclick="escribir('9')" value="9"> <input type="button" onclick="escribir('*')" value="*"><br>
<input type="button" onclick="escribir('0')" value="0">
<input type="button" onclick="escribir('.')" value=".">
<input type="button" onclick="document.f1.reset()" value="C">
<input type="button" onclick="calcular()" value="="><br>
</form>
</center>
<script>
function escribir(n){
var caja = document.f1.txtcaja.value;
document.f1.txtcaja.value=caja + n;
}
function calcular(){
var caja = document.f1.txtcaja.value;
document.f1.txtcaja.value=eval(caja);
}
</script>
</body>
</html>



Comentarios sobre la versión: 1.0 (2)

Imágen de perfil
8 de Marzo del 2017
estrellaestrellaestrellaestrellaestrella
Perfecta!
Responder
Imágen de perfil
10 de Marzo del 2017
estrellaestrellaestrellaestrellaestrella
Que fácil lo has hecho... esta perfecta!!!
Responder

Comentar la versión: 1.0

Nombre
Correo (no se visualiza en la web)
Valoración
Comentarios...
CerrarCerrar
CerrarCerrar
Cerrar

Tienes que ser un usuario registrado para poder insertar imágenes, archivos y/o videos.

Puedes registrarte o validarte desde aquí.

Codigo
Negrita
Subrayado
Tachado
Cursiva
Insertar enlace
Imagen externa
Emoticon
Tabular
Centrar
Titulo
Linea
Disminuir
Aumentar
Vista preliminar
sonreir
dientes
lengua
guiño
enfadado
confundido
llorar
avergonzado
sorprendido
triste
sol
estrella
jarra
camara
taza de cafe
email
beso
bombilla
amor
mal
bien
Es necesario revisar y aceptar las políticas de privacidad

http://lwp-l.com/s3898