Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,926 questions

51,859 answers

573 users

How to sum array values in a given range with C#

1 Answer

0 votes
using System;

class Program
{
    public static int sumRangeValues(int []arr, int from, int to) {
        int sum = 0;
        int size = arr.Length;
        for (int i = 0; i < size; i++) {
            if (i >= from && i <= to)
                sum += arr[i];
        }
        return sum;
    }
    static void Main() {
        int []arr = { 3, 6, 0, 9, 1, 2, 8, 7, 4, 17 };
        int from = 3, to = 7;
 
        Console.Write(sumRangeValues(arr, from, to));
    }
}


    
       
/*
run:
       
27
       
*/

 



answered Dec 16, 2021 by avibootz

Related questions

1 answer 126 views
1 answer 164 views
1 answer 209 views
1 answer 156 views
1 answer 138 views
2 answers 165 views
1 answer 143 views
...