mirror of
https://github.com/balkian/my_calculator.git
synced 2024-11-22 07:12:28 +00:00
sin(x) button
This commit is contained in:
parent
82165b0979
commit
6cbefdf836
@ -5,6 +5,10 @@ function cube() {
|
|||||||
var num = document.getElementById("n1");
|
var num = document.getElementById("n1");
|
||||||
num.value = Math.pow(num.value, 3);
|
num.value = Math.pow(num.value, 3);
|
||||||
}
|
}
|
||||||
|
function sin() {
|
||||||
|
var num = document.getElementById("n1");
|
||||||
|
num.value = Math.sin(num.value);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
@ -12,5 +16,6 @@ num.value = Math.pow(num.value, 3);
|
|||||||
Number:
|
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>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
Reference in New Issue
Block a user