首页 > 代码库 > 求$a、$b、$c中的最大值和最小值

求$a、$b、$c中的最大值和最小值

方法一

<?php

$a=3;

$b=4

$c=5;

echo max($a,$b,$c);

echo "<br/>";

echo min($a,$b,$c);


方法二

<?php

function textmax($a,$b,$c){

$max=$a;

if($max<$b) $max=$b;

if($max<$c) $max=$c;

return $max;

}

$a=3;

$b=4;

$c=5;

echo textmax($a,$b,$c);

?>


方法三

<?php

function textmax($a,$b,$c){

if($a>$b){

  $b=$a; 

}

if($b>$c){

  $c=$b;

}

echo $c;

return $c;

}

textmax(3,4,8);

?>


本文出自 “12145704” 博客,请务必保留此出处http://12155704.blog.51cto.com/12145704/1867586

求$a、$b、$c中的最大值和最小值