猿问

if else 问题

<script type="text/javascript">


//定义函数

function add(x,y){

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

    var sum,x,y; 

    sum=x-y;

   if(sum>0){     

   return x;  

   }else{

       if(sum<0){

          return y; 

       }else{

           if(sum==0){

               var none = "一样大"

               return none;

           }

       }

   }

  }

  req1=add(5,4);

  req2=add(3,3);

  req3=add(3,6);

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

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

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

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

</script>


就比如这段代码里的if else 是不是可以有简写呀 这样写总感觉挺复杂

zeroweb
浏览 1615回答 4
4回答

Jason333

if(sum > 0) {     ... } else if(sum < 0) {     ... } else {     ... }

迷途的马尔斯

你非要用if...else的话,三种情况就必须写"if(){}else if(){}else{}",这样已经是最简单的了,
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答