function sum($n){ if($n==1){ return 1; }else{ return sum($n-1)+$n; } }
本文标题:一个简单的PHP递归求和
本文链接:https://www.haomeiwen.com/subject/ecqcmxtx.html
网友评论