crea una calculadora cientifica que pueda hacer calculos dificiles en html
<!DOCTYPE html> <html> <head> <title>Calculadora</title> <style> body{ background: black; color: #0FF; } #result{ display: none; } .caja{ height: 40px; width: 40px; font-size: 30px; background: #666; color: #FFF; margin: 5px; cursor: pointer; } </style> <script> function calc(valor){ document.getElementById("result").value+=valor; } function clearCalc(){ document.getElementById("result").value=""; } function resultCalc(){ var result = document.getElementById("result").value; var resultCalc=eval(result); document.getElementById("result").value=resultCalc; } </script> </head> <body> <div style="text-align:center;"> <input type="text" id="result"> <br