A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

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
Q:

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

0

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 Output:

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

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#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;    
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now