返回列表 發帖

練習三、if判斷式之比大小

用 prompt 讓使用者輸入兩個數字,並輸出比較後的結果。

  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.                            var a=0;
  10.                            var b=0;
  11.    a=parseInt(prompt("請輸入a:"));  
  12.    b=parseInt(prompt("請輸入b:"));          
  13.            if(a>b)
  14.            {
  15.              alert("a大於b");
  16.            }else if(a<b)
  17.            {
  18.       alert("a小於b");
  19.            }else
  20.            {
  21.       alert("a等於b");
  22.            }
  23.    </script>
  24.         </body>     
  25.    

  26. </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.                 var a=0;
  10.                 var b=0;
  11.                 a=parseInt(prompt("請輸入a"));
  12.                 b=parseInt(prompt("請輸入b"));
  13.                 if(a>b)
  14.                 {
  15.                         alert("a大於b");
  16.                 }else if
  17.                 {
  18.                         alert("a小於b");
  19.                 }else
  20.                 {
  21.                         alert("a等於b");
  22.                 }
  23.                 </script>
  24.         </body>
  25. </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.                 var a = 0;
  10.                 var b = 0;
  11.                 a = parseInt(prompt("請輸入a:"));
  12.                 b = parseInt(prompt("請輸入b:"));
  13.                 if (a > b)
  14.                 {
  15.                         alert("a > b");
  16.                 }
  17.                 else if (a < b)
  18.                 {
  19.                         alert("a < b");
  20.                 }
  21.                 else if (a == b)
  22.                 {
  23.                         alert("a = b");
  24.                 }
  25.                 </script>
  26.         </body>
  27. </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.         var x=0;
  10.         var y=0;

  11.         x=parseInt(prompt ("A is :"))
  12.         y=parseInt(prompt ("B is :"))

  13.         if (x>y) {
  14.                 alert("x>y");
  15.         }
  16.         else if (x<y) {
  17.                 alert("x<y");
  18.         }
  19.         else {
  20.                 alert("x=y");
  21.         }

  22.         </script>

  23. </body>

  24. </html>
複製代碼

TOP

  1. <meta charset="UTF-8">
  2.                 <TITLE>比大小</TITLE>
  3.         </head>
  4.         <body>
  5.                 <script type="text/javascript">
  6.                 var yh=0;
  7.                 var head=0;
  8.                  yh=praseInt(prompt("yh is:"));
  9.                 head=praseInt(prompt("head is :"));
  10.                 document.write(yh);
  11.                 document.write(head);
  12.                 if (yh>head) {
  13.                         alert("yh>head")
  14.                 };
  15.                 else if (yh<head) {
  16.                         alert(yh<head)
  17.                 };

  18.                 else {
  19.                         alert(alertyh=head)
  20.                         }

  21.                 </script>
  22.         </body>
  23. </html>
複製代碼

TOP

返回列表