首页 > 其他 > 详细

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

时间:2016-10-31 22:55:25      阅读:433      评论:0      收藏:0      [点我收藏+]

方法一

<?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中的最大值和最小值

原文:http://12155704.blog.51cto.com/12145704/1867586

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!