返回列表 發帖

練習五、function 設計之 BMI 計算機

BMI 計算機

  1. <!DOCTYPE stml>
  2. <stml>
  3.         <head>
  4.                 <meta charset="UTF-8">
  5.                 <title></title>
  6.         </head>
  7.         <body>
  8.         <script type="text/javascript">
  9.         var n = prompt("請輸入姓名:");
  10.                  hello(n);

  11.                 function hello(name)
  12.                 {
  13.                         alert(name + "hello");
  14.                 }
  15.                 var h = parseInt(prompt("請輸入身高:"));
  16.                 var w = parseInt(prompt("請輸入體重:"));
  17.                 var b = bmi(1.56,50)
  18.                 alert("你的bmi是:" + b)
  19.                 function bmi(height,weight)
  20.                 {
  21.                         return weight / (height * height)
  22.                 }
  23.         </script>
  24.         </body>
  25. </stml>
複製代碼

TOP

  1. <!DOCTYPE html>
  2. <html>
  3.         <head>
  4.                 <meta charset="UTF-8">
  5.                 <title></title>
  6.         </head>
  7.         <body>
  8.                 <script type="text/javascript">
  9.                 //hello("海綿寶寶");
  10.                 //hello("丁丁");
  11.                 //hello("多多");
  12.                 //hello("圓圓");
  13.                 hello("奇跁");
  14.                 var h=parseInt(prompt("請輸入身高: "));
  15.                 var w=parseInt(prompt("請輸入體重: "));
  16.                 var b=BMI(h/100,w);
  17.                 alert("BMI計算機");
  18.                 alert("你的BMI是"+b);
  19.                 function hello(name)
  20.                 {
  21.                         alert(name+"哈樓~~嗨嗨嗨!!!");
  22.                 }
  23.                 function BMI(height,weight)
  24.                 {
  25.                         return weight/(height*height);
  26.                 }
  27.                 </script>
  28.         </body>
  29. </html>                                                                                                                                    
複製代碼

TOP

  1. <!DOCTYPE html>
  2. <html>
  3.         <head>
  4.                 <meta charset="UTF-8">
  5.                 <title></title>
  6.     </head>
  7.     <body>
  8.             <script type="text/javascript">
  9.              
  10.              var n=(prompt("請輸入姓名:"));
  11.               hello(n);
  12.              
  13.          function hello(name)
  14.          {
  15.                  alert(name +"你好!!");
  16.          }
  17.          alert("這是個BMI計算機");
  18.          var h=parseInt(prompt("請輸入身高:"));
  19.          var w=parseInt(prompt("請輸入體重:"));
  20.          var b=bmi(h/100,w);
  21.          alert("你的BMI是:"+b);
  22.          function bmi(height,weight)
  23.          {
  24.                  return weight/(height*height);
  25.          }
  26.             </script>
  27.     </body>
  28. </html>
複製代碼

TOP

  1. <!DOCTYPE html>
  2. <html>
  3.         <head>
  4.         <meta charset="UTF-8">
  5.                 <TITLE></TITLE>
  6.         </head>
  7.         <body>
  8.                 <script type="text/javascript">
  9.                
  10.                 hello("游東祥");
  11.                 var b = n prompt(("請輸入身高"));
  12.                 var b = n prompt(("請輸入體重"));
  13.                 alert(b)
  14.                 function hello(name)
  15.                 {
  16.                         alert(name+"hello??!!!")
  17.                 }
  18.                 function bmi (height, weight)
  19.                 {
  20.                 return weight *( height * height)
  21.                 }
  22.                 </script>
  23.         </body>
  24. </html>
複製代碼

TOP

  1. <!DOCTYPE html>
  2. <html>
  3.         <head>
  4.                 <meta charset="UTF-8">       
  5.                 <title></title>
  6.         </head>
  7.         <body>

  8.                 <script type="text/javascript">

  9.                         hello("yoho");
  10.                        
  11.                         function hello(name)
  12.                         {
  13.                                 alert(name + "hello")
  14.                         }


  15.                                 var h=parseInt(prompt("cm"))
  16.                                 var kg=parseInt(prompt("kg"))

  17.                                 var a=BMI(h/100 ,kg)
  18.                                 alert(a)
  19.                         function BMI(m,kg)
  20.                         {
  21.                                 return kg/ (m*m);
  22.                         }

  23.                 </script>
  24.         </body>
  25.         </html>
複製代碼

TOP

返回列表