问答详情
源自:5-6 编程练习

请帮我看下哪里错了

<!DOCTYPE  HTML>
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>函数</title>

<script type="text/javascript">

//定义函数
function compare(x,y)
{
    if(x > y)
    {
        return x;
    }
    else if(x < y);
    {
        return y;
    }
    else
    {
        return "equal";
    }
}

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

var res1=compare(5,4);
var res2=compare(6,3);


//调用函数,实现下面两组数中,返回较大值。
  document.write(" 5 和 4 的较大值是:"+ res1+ "<br>");
  document.write(" 6 和 3 的较大值是:"+ res2);

</script>
</head>
<body>
</body>
</html>

在加了

 else
    {
        return "equal";
    }

之后,就什么都不显示了

提问者:芝麻果子WR 2019-02-26 16:18

个回答

  • chenMCLAY
    2019-02-26 16:26:55
    已采纳

    else if(x < y);

    分号