编写一个php函数?
一个php函数,计算1+3+5+7+······+n(n是奇数)的总和
也是一个递归求和,代码如下
function f($n){
$s=0;
for ($i=1;$i<=$n;$i+=2) $s+=$i;
return $s;
}