标签:https get logs 最小值 tps rar blank 最小 ref
文章地址:https://www.cnblogs.com/sandraryan/
$x = 10; $y = 45; $z = 3; //求出三个数字中最大值最小值 //先比较x y,如果x> y ,判断x 和z,从x z 中判断最大值赋给max //如果x < y ,判断 y 和z ,从y z中判断最大值 $max = $x > $y ? ($x > $z ? $x :$z) : ($y > $z ? $y : $z); $min = $x < $y ? ($x < $z ? $x :$z) : ($y < $z ? $y: $z); echo $max; //45 echo ‘<br>‘; echo $min; //3
两两计算~~求出极值
标签:https get logs 最小值 tps rar blank 最小 ref
原文地址:https://www.cnblogs.com/sandraryan/p/11718103.html