Sum

From Simple English Wikipedia, the free encyclopedia

The sum of two numbers is what we get when we add the two numbers. There are a number of ways of writing sums, with the most common being:

  • Addition (2 + 4 + 6 = 12)
  • Summation (\sum_{k=2}^3 k = 12)
  • Computerization:
Sum = 0
For I = M to N
Sum = Sum + X(I)
Next I (in Visual BASIC)