码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2016-10-31 22:57:00      阅读:340      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!