How can we show sum of a numberr series and number series also like 1+2+3+4+5... =Sum in C# ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How can we show sum of a numberr series and number series also like 1+2+3+4+5... =Sum in C# ?

C# Programming

11th Sep 2017, 5:28 PM
Hemant Bansal
Hemant Bansal - avatar
2 Answers
+ 8
Could just use a for loop. const int limit = 100; // sum up to this value int sum = 0; for(int i = 1; i <= limit; i++) sum += i;
11th Sep 2017, 9:59 PM
Rrestoring faith
Rrestoring faith - avatar
+ 3
Thought there would be something like Math.Sum() But there is not. I found this one which is very neat too. Make a list or a array or another Inumberable And use their sum-method int[] array1 = { 1, 3, 5, 7 }; List<int> list1 = new List<int>() { 1, 3, 5, 7 }; // // Use Sum extension on their elements. // int sum1 = array1.Sum(); int sum2 = list1.Sum(); // // Write results to screen. // Console.WriteLine(sum1); Console.WriteLine(sum2); https://www.dotnetperls.com/sum
11th Sep 2017, 6:50 PM
sneeze
sneeze - avatar