<html>
<head>
<script>
function cube(data)
{
document.write("<br>CUBE=" + data*data*data)
}
function square(data)
{
document.write("<br>SQUARE = " + data*data)
}
function demo1(option)
{
var inputBox = document.getElementById("input1")
var n = parseInt(inputBox.value)
if(option==1)
{
square(n)
}
if(option==2)
{
cube(n)
}
}
</script>
</head>
<body>
<input type="text" placeholder="number" id="input1" />
<br><br>
<input type="button" value="Square" onclick="demo1(1)" /><br>
<input type="button" value="Cube" onclick="demo1(2)" /><br>
</body>
</html>
Plot No. 64, PU-4, Scheme 54, Behind C21 Mall near Hotel Holiday , AB Road, Indore Pin-code:452001
contact@codebetter.in
+91 88230 75444, +91 99939 28766