テキストボックスに入力した値を変数 lw と h にプルし、方程式 l*w*h を実行して、コーディングがあまり得意ではない答えを提示するようにしたいと思います。コンピュータサイエンスを取っている私は本当に助けていただければ幸いです
` ボリューム
body,input{
font-family: sans-serif;
color: #000000;
background-color: #CC0000;
}
</style>
</head>
<script type="text/javascript">
function RP(){
var l = document.getElementById('Length').value=l;
var w = document.getElementById('Width').value=w;
var h = document.getElementById('Height').value=h;
var answer = l*w*h
document.getElementById('Answer').value=answer;
}
</script>
<body>
<form>
<button id="roll" onclick="RP()">Button</button>
<p>Rectangular Prism
<p>Length:
<input type="text" id='Length' size="3"/>
<br/>
Width:
<input type="text" id='Width' size= "3"/>
<br/>
Height:
<input type="text" id='Height' size= "3"/>
<br/>
Answer:
<input type="text" id='Answer' size="3" disabled='disabled'/>
<br/>
<form/>
</body>
</html>
`