Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In PHP, how does one count up to 10 and sum up the values? To count, is this right?

for($i=0;$i<10;$i++) {
    echo $i;
}

How do I sum?
Should I store the above output in an array and then use array_sum, or is there any other straightforward way?

share|improve this question
6  
Did you try using +? – Ignacio Vazquez-Abrams Nov 21 '11 at 5:03
but i want both in one program.. – Jay Nov 21 '11 at 5:06
1  
Is this homework? – Lucanos Nov 21 '11 at 5:07
@Lucanos, no, I am trying to use this in some other function that I am trying to write. – Jay Nov 21 '11 at 5:10

closed as not a real question by ircmaxell, webarto, Richard Harrison, j0k, Octavian Damiean Jul 29 '12 at 18:26

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

6 Answers

up vote 7 down vote accepted

Use a separate $sum variable.

$sum = 0; // Initialize $sum to 0

for ($i = 1; $i <= 10; $i++) {
    $sum += $i; // Add $i to $sum
    echo $i; // Print out $i
}

echo $sum; // 55
share|improve this answer

Use math?

sum(n) = (n*(n+1)) / 2

so:

sum(10) = (10*11) / 2 = 55
share|improve this answer
If the user has a more complicated loop, though, using simple math might not work. – mc10 Nov 21 '11 at 5:08
2  
@mc10 late reply, but math always works. – jli Nov 30 '11 at 3:03
$total = array_sum(range(1, 10));
share|improve this answer
for ($i = 1, $sum = 0; $i <= 10; $sum += $i++) {
    echo $i;
}

echo $sum;
share|improve this answer
3  
I want to +1 this for being clever, but I also want to -1 it for being clever. – todofixthis Nov 21 '11 at 5:16
$i should be initialized to 1, not 0, otherwise you print out an extra "0". – mc10 Nov 22 '11 at 19:11
1  
The question says "count up to 10"; it doesn't say where to start. Starting from 1 probably makes sense, but we can't be sure. – Keith Thompson Dec 16 '11 at 0:47
$sum=0;
for($i=1;$i<=10;$i++) 
{ 
    $sum=$sum+$i; 
}
echo $sum;
share|improve this answer
ya it should be $i<=10 – vikky Nov 21 '11 at 5:14
$total = 0;

for ($i = 0; $i < 10; $i++) 
  $total += $i;

echo $total; 
share|improve this answer
$i = 10 should be $i <= 10. – mc10 Nov 21 '11 at 5:08
keyboard had some problem accidental. – student Nov 21 '11 at 5:12
This still needs to be fixed; it will only count up to 9 (and starting with 0 is a little pointless, don't you think?). – todofixthis Mar 9 '12 at 20:37

Not the answer you're looking for? Browse other questions tagged or ask your own question.