Question: Write a C + + function to determine the number of values from an integer array divisible by a positive integer value ( greater than

Write a C++ function to determine the number of values from an integer array divisible by a positive integer value (greater than zero) received as a parameter.
The header of the function is as follows:
int count_divisible_values (const int values [l, int array_size, int divisor)
This function receives as parameters an integer array with the values, a positive integer value with the size of the array, and a positive integer value with the divisor. It returns an integer value based on the following conditional:
If the array size is less or equal to zero, the function returns -1.
Otherwise, return an integer value with the number of values in the array that are divisible by the divisor.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!