运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗色/亮色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>Machine Learning</h1> <p>The possibility of throwing 3 fours at the same time is:</p> <div id="demo"></div> <script> let p = Math.pow(1/6, 3); document.getElementById("demo").innerHTML = p; </script> </body> </html>