源代码:
下载代码
AI 编程工具
点击运行
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> document.getElementById("demo").innerHTML = "The temperature is " + toCelsius(32) + " Centigrade"; function toCelsius(fahrenheit) { return (5/9) * (fahrenheit-32); } </script> </body> </html>
运行结果: