基本PHP编号计算

时间:2014-10-19 23:41:06

标签: php

说我有以下内容:

for ($i = 1; $i <= 5; $i++) {
    // get the sum of all numbers
}

基本上,我想计算 1 + 2 + 3 + 4 + 5 =?最简单的方法是什么?

2 个答案:

答案 0 :(得分:3)

$j=0;
for ($i = 1; $i <= 5; $i++) {
    // get the sum of all numbers

   $j += $i;
}

echo $j; //print the sum of all numbers

答案 1 :(得分:2)

或者你可以做这个简单的数学公式1+2+....+n=((n+1)*n)/2