- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title></title>
- </head>
- <body>
- <script type="text/javascript">
- //hello("海綿寶寶");
- //hello("丁丁");
- //hello("多多");
- //hello("圓圓");
- hello("奇跁");
- var h=parseInt(prompt("請輸入身高: "));
- var w=parseInt(prompt("請輸入體重: "));
- var b=BMI(h/100,w);
- alert("BMI計算機");
- alert("你的BMI是"+b);
- function hello(name)
- {
- alert(name+"哈樓~~嗨嗨嗨!!!");
- }
- function BMI(height,weight)
- {
- return weight/(height*height);
- }
- </script>
- </body>
- </html>
複製代碼 |