Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Compute the sum of values in a given array of integers except the number 17

C++ Basic Algorithm: Exercise-100 with Solution

Write a C++ program to compute the sum of values in a given array of integers except the number 17. Return 0 if the given array has no integer.

Sample Solution:

C++ Code :

#include <iostream>
using namespace std;

static int test(int nums[], int arr_length)
          {
             int sum = 0;

            for (int i = 0; i < arr_length; i++)
            {
                if (nums[i] != 17) sum += nums[i];
         }
            return sum;
           }       
               
int main() 
 {  
  int nums1[] = { 1, 5, 7, 9, 10, 17 };
  int arr_length = sizeof(nums1) / sizeof(nums1[0]);
  cout << "Sum of values in the array of integers except the number 17:" << endl;
  cout << test(nums1, arr_length) << endl; 
  return 0;    
}

Sample Output:

Sum of values in the array of integers except the number 17:
32

Pictorial Presentation:

C++ Basic Algorithm Exercises: Compute the sum of values in a given array of integers except the number 17.

Flowchart:

Flowchart: Compute the sum of values in a given array of integers except the number 17.

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a C++ program to compute the difference between the largest and smallest values in a given array of integers and length one or more.
Next: Write a C++ program to compute the sum of the numbers in a given array except those numbers starting with 5 followed by atleast one 6. Return 0 if the given array has no integer.

What is the difficulty level of this exercise?