前往内容

算法/查找最大值/jscript 6

来自维基文库,自由的开放式教科书
  function findMaxFourEle(i_intA,i_intB,i_intC,i_intD) {
     var o_intMax = i_intA;
     if ( i_intB > o_intMax )
        o_intMax = i_intB;
     if ( i_intC > o_intMax )
        o_intMax = i_intC;
     if ( i_intD > o_intMax )
        o_intMax = i_intD;     
     return o_intMax;
  } // end method
  function findMaxThreeEle(i_intA,i_intB,i_intC) {
     return findMaxFourEle(i_intA,i_intB,i_intC,i_intC);    
  } // end method     
  document.write(findMaxThreeEle(3,4,5));
华夏公益教科书