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: Calculate the sum of all even and odd numbers in an array

C++ Basic: Exercise-47 with Solution

Write a program in C++ to calculate the sum of all even and odd numbers in an array.

Sample Solution:

C++ Code :

#include <iostream>
using namespace std;
int * test(int arr[], int s1) {
    static int result[2];
    for(int i = 0; i<=s1; i++)
    {
        arr[i]%2 == 0 ? result[0]+=arr[i] : result[1]+=arr[i];
    }
	return result;
}
int main()
{
    int array1[] = {1, 2, 3, 4, 5, 6, 7, 8};
    int *eo;
    int s1 = sizeof(array1) / sizeof(array1[0]);
    cout << "Original array: ";
    for (int i=0; i < s1; i++)
      cout << array1[i] <<" ";
    eo = test(array1, s1);
    cout <<"\nSum of all even and odd numbers: " << *(eo+0) << "," << *(eo+1);
    return 0;
}

Sample Output:

Original array: 1 2 3 4 5 6 7 8 
Sum of all even and odd numbers: 20,16

Flowchart:

Flowchart: Calculate the sum of all even and odd numbers in an array

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to calculate the volume of a cylinder.
Next: Write a program in C++ which swap the values of two variables not using third variable.

What is the difficulty level of this exercise?