integrate master

master
J. Fernando Sánchez 5 years ago
commit adbee61e33

@ -9,6 +9,10 @@ function sin() {
var num = document.getElementById("n1"); var num = document.getElementById("n1");
num.value = Math.sin(num.value); num.value = Math.sin(num.value);
} }
function fourth() {
var num = document.getElementById("n1");
num.value = Math.pow(num.value, 4);
}
</script> </script>
</head> </head>
<body> <body>
@ -17,5 +21,6 @@ Number:
<input type="text" id="n1"><p> <input type="text" id="n1"><p>
<button onclick="cube()"> x^3 </button> <button onclick="cube()"> x^3 </button>
<button onclick="sin()"> sin(x) </button> <button onclick="sin()"> sin(x) </button>
<button onclick="fourth()"> x^4 </button>
</body> </body>
</html> </html>

Loading…
Cancel
Save