標題:
練習五、function 設計之 BMI 計算機
[打印本頁]
作者:
游東祥
時間:
2014-7-16 16:29
標題:
練習五、function 設計之 BMI 計算機
BMI 計算機
作者:
李允軒
時間:
2014-7-16 16:31
<!DOCTYPE stml>
<stml>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<script type="text/javascript">
var n = prompt("請輸入姓名:");
hello(n);
function hello(name)
{
alert(name + "hello");
}
var h = parseInt(prompt("請輸入身高:"));
var w = parseInt(prompt("請輸入體重:"));
var b = bmi(1.56,50)
alert("你的bmi是:" + b)
function bmi(height,weight)
{
return weight / (height * height)
}
</script>
</body>
</stml>
複製代碼
作者:
劉泳鱔
時間:
2014-7-16 16:32
<!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>
複製代碼
作者:
張彥承
時間:
2014-7-16 16:32
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<script type="text/javascript">
var n=(prompt("請輸入姓名:"));
hello(n);
function hello(name)
{
alert(name +"你好!!");
}
alert("這是個BMI計算機");
var h=parseInt(prompt("請輸入身高:"));
var w=parseInt(prompt("請輸入體重:"));
var b=bmi(h/100,w);
alert("你的BMI是:"+b);
function bmi(height,weight)
{
return weight/(height*height);
}
</script>
</body>
</html>
複製代碼
作者:
陳品諨
時間:
2014-7-16 16:33
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<TITLE></TITLE>
</head>
<body>
<script type="text/javascript">
hello("游東祥");
var b = n prompt(("請輸入身高"));
var b = n prompt(("請輸入體重"));
alert(b)
function hello(name)
{
alert(name+"hello??!!!")
}
function bmi (height, weight)
{
return weight *( height * height)
}
</script>
</body>
</html>
複製代碼
作者:
陳威臣
時間:
2014-7-16 16:34
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<script type="text/javascript">
hello("yoho");
function hello(name)
{
alert(name + "hello")
}
var h=parseInt(prompt("cm"))
var kg=parseInt(prompt("kg"))
var a=BMI(h/100 ,kg)
alert(a)
function BMI(m,kg)
{
return kg/ (m*m);
}
</script>
</body>
</html>
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2