हिंदी

Write the Definition of a Function Sumeo(Int Values[], Int N) in C++, Which Should Display the 4 Sum of Even Value and Sum of Odd Values of the Array Separately Example: If the Array Values Contains Sum of Even Values = 42 (I.E., 20+22) Sum of Odd Values= 99 (I.E., 25+21+53) - Computer Science (C++)

Advertisements
Advertisements

प्रश्न

Write the definition of a function SumEO(int VALUES[], int N) in C++, which should display the 4 sum of even value and sum of odd values of the array separately.

Example: If the array VALUES contains

25 20 22 21 53

Then the functions should display the output as:

Sum of even values = 42 (i.e., 20+22)

Sum of odd values= 99 (i.e., 25+21+53)

उत्तर

void sumEO(int VALUES[], int N)
{
    int S1 = 0;
    int S2 = 0;
    for(int i = 0 ; i < N ; i + +)
    { 
       if(VALUES[i]% 2 = = 0)
          {S1 += VALUES [i];}
       else
          {S2 += VALUES [i];}
    }
cout << "Sum of even values"<< S1 << endl;
cout << "Sum of odd values"<< S2 << endl;
}
shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2017-2018 (March) All India Set 4
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×