答案是这样的吧

来源:5-6 编程练习

慕仙4298538

2018-12-20 10:33

<!DOCTYPE  HTML>

<html >

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>函数</title>


<script type="text/javascript">

  //定义函数

function compare(a,b){

    if(a>b)

    return a;

    else if(b>a)

    return b;

    else

    return "相等"

}

  document.write(" 5 和 4 的较大值是:"+compare(5,4)+"<br>");

  document.write(" 6 和 3 的较大值是:"+compare(6,3)+"<br>");

  document.write(" 7 和 7 的的比较:"+compare(7,7));

</script>

</head>

<body>

</body>

</html>


写回答 关注

5回答

  • 慕粉1627582927
    2019-01-15 07:30:23

    <!DOCTYPE  HTML>

    <html >

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <title>函数</title>


    <script type="text/javascript">


    //定义函数

    function asdf(a,b)

    {

        //函数体,判断两个整数比较的三种情况

        if(a>b)

        {

            return a;

        }

        else

        {

            return b;

        }

    }

    //调用函数,实现下面两组数中,返回较大值。

      document.write(" 5 和 4 的较大值是:"+asdf(5,4)+"<br>");

      document.write(" 6 和 3 的较大值是:"+asdf(6,3)); 

    </script>

    </head>

    <body>

    </body>

    </html>

  • 荒荒_
    2019-01-09 10:46:42

    if 语句的格式不对吧?应该是这样子的吧:

    if (x > y){

            return x;

        }

        else if(x < y){

            return y;

        }

        else {

            return "两数相等";

        }


  • l海洋
    2018-12-29 02:52:46

    为什么return "相等"后面加分号就不会输出任何东西啊?



    么短号房间

    不对不对 是要加分号哈哈哈 可能是写错了

    2019-01-16 15:43:34

    共 2 条回复 >

  • 一颗路边的小石头
    2018-12-21 14:06:27

    哈哈,这是自问自答呀,是对的

  • 慕仙4298538
    2018-12-20 10:35:38

    是对的

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题