Commit 6dc11985 by roshka

Unos arreglos en el codigo de calculadora

parent a58a7a49
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
</table> </table>
</div> </div>
<br> <br>
<button id="borrar">CE</button> <button id="eliminar">CE</button>
<button id="division">/</button> <button id="division">/</button>
<button id="multi">*</button> <button id="multi">*</button>
<br> <br>
......
function variables() { function variables() {
var resultado = document.getElementById('resultado'); var resultado = document.getElementById('resultado');
var suma = document.getElementById('suma'); var suma = document.getElementById('suma');
var borrar = document.getElementById('borrar'); var eliminar = document.getElementById('eliminar');
var resta = document.getElementById('resta'); var resta = document.getElementById('resta');
var multi = document.getElementById('multi'); var multi = document.getElementById('multi');
var division = document.getElementById('division'); var division = document.getElementById('division');
...@@ -54,38 +54,37 @@ ocho.onclick = function(e){ ...@@ -54,38 +54,37 @@ ocho.onclick = function(e){
nueve.onclick = function(e){ nueve.onclick = function(e){
resultado.textContent = resultado.textContent + "9"; resultado.textContent = resultado.textContent + "9";
} }
borrar.onclick = function(e){ eliminar.onclick = function(e){
borrar();
}
suma.onclick = function(e){
operandor1 = resultado.textContent;
operacion = "+";
borrar(); borrar();
} }
resta.onclick = function(e){ resta.onclick = function(e){
resultado.textContent = resultado.textContent + "-";
operandor1 = resultado.textContent; operandor1 = resultado.textContent;
operacion = "-"; operacion = "-";
borrar(); //borrar();
} }
multi.onclick = function(e){ multi.onclick = function(e){
resultado.textContent = resultado.textContent + "*";
operandor1 = resultado.textContent; operandor1 = resultado.textContent;
operacion = "*"; operacion = "*";
borrar(); // borrar();
} }
division.onclick = function(e){ division.onclick = function(e){
resultado.textContent = resultado.textContent + "/";
operandor1 = resultado.textContent; operandor1 = resultado.textContent;
operacion = "/"; operacion = "/";
borrar(); //borrar();
} }
igual.onclick = function(e){ igual.onclick = function(e){
operandor2 = resultado.textContent; resultado.textContent = resultado.textContent;
borrar(); //borrar();
} }
function borrar() { function borrar() {
resultado.textContent=" "; resultado.textContent= "";
} }
function operaciones(params) { function operaciones() {
var ecuacion = 0; var ecuacion;
switch (operacion) { switch (operacion) {
case "+": case "+":
ecuacion = parseFloat(operandor1)+parseFloat(operandor2); ecuacion = parseFloat(operandor1)+parseFloat(operandor2);
...@@ -100,5 +99,11 @@ function operaciones(params) { ...@@ -100,5 +99,11 @@ function operaciones(params) {
ecuacion = parseFloat(operandor1)/parseFloat(operandor2); ecuacion = parseFloat(operandor1)/parseFloat(operandor2);
break; break;
} }
resultado.textContent = ecuacion;
}
suma.onclick = function(e){
resultado.textContent = resultado.textContent + "+";
operandor1 = resultado.textContent;
operacion;
// borrar();
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment