说我有以下内容:
for ($i = 1; $i <= 5; $i++) {
// get the sum of all numbers
}
基本上,我想计算 1 + 2 + 3 + 4 + 5 =?最简单的方法是什么?
答案 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