mirror of
https://github.com/balkian/my_calculator_2.git
synced 2024-11-21 15:02:28 +00:00
x^3 button
This commit is contained in:
commit
82165b0979
1
README.md
Normal file
1
README.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
Mi primer fichero en mi primer repositorio, Fernando Sánchez
|
16
calculator.html
Normal file
16
calculator.html
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<!DOCTYPE html><html><head>
|
||||||
|
<title>Calculator</title><meta charset="utf-8">
|
||||||
|
<script type="text/javascript">
|
||||||
|
function cube() {
|
||||||
|
var num = document.getElementById("n1");
|
||||||
|
num.value = Math.pow(num.value, 3);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Calculadora de Fernando Sánchez</h1>
|
||||||
|
Number:
|
||||||
|
<input type="text" id="n1"><p>
|
||||||
|
<button onclick="cube()"> x^3 </button>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue
Block a user