01/11/2015

C++ Program To Find Sum of Even Positive / Even Negative / Odd Positive / Odd Negative of An Array

Problem:- Write C++ A Program To Sum Of Even-Positive, Even-Negative, Odd-Positive, Odd-Negative Of An Array or C++ Program To Find Sum Of Even Positive and Even Negative Of An Array or C++ Program To Find Sum Of Even Positive and Even Negative Odd Positive and Odd Negative Of An Array or C++ Program To Find Sum Of Odd Positive and Odd Negative Of An Array or C++ Program To Find Sum of Even Positive / Even Negative / Odd Positive / Odd Negative of An Array.

Check This:- Hacker rank solution for Strings, Classes, STL, Inheritance in C++.


Logic:- Here we need to solve two problems one in even-odd and second in positive-negative and according to the problem, As we know that if the number is divided by 2 then number is even and if not then the number is odd. we can solve before proceeding even-odd. see C Program For Checking Number Is Even Or Odd and if the number is greater than zero then the number is positive and if the number is less then zero then the number is negative. Check for positive-negative see C++ Program To Check Number Is Positive Or Negative.

Extreme Recommended:- Like our Facebook Page or Join our Facebook Group and Google plus Community for up-to-date for a new post.

Also Check:- Geeksforgeeks solution for School, Basic, Easy, Medium, Hard in C++.

Solution:-
#include<iostream>

using namespace std;
int main()
{
  int a[100],i,n,k=0,rem=0,sum=0,odde=0,oddn=0;
 
cout<<"Enter The Size of Array\n";
  cin>>n;
 
cout<<"Enter The Array Element\n";
  for(i=0;i<n;i++)
  {
  cin>>a[i];
  }

  for(i=0;i<n;i++)
  {
  if(a[i]>=0)
  {
  if(a[i]%2==0)
  sum=sum+a[i];
  else
  rem=rem+a[i];
  }
  else
  {
  if(a[i]%2==0)
  odde=odde+a[i];
  else
  oddn=oddn+a[i];
  }
  }
  cout<<sum<<" Is Sum of Even-Positive\n";
  cout<<rem<<" Is Sum of Odd-Positive\n";
  cout<<odde<<" Is Sum of Even-Negative\n";
  cout<<oddn<<" Is Sum of Odd-Negative\n";
  return 0;
}

Output:-


Previous Post
Next Post

post written by:

Hi, I’m Ghanendra Yadav, SEO Expert, Professional Blogger, Programmer, and UI Developer. Get a Solution of More Than 500+ Programming Problems, and Practice All Programs in C, C++, and Java Languages. Get a Competitive Website Solution also Ie. Hackerrank Solutions and Geeksforgeeks Solutions. If You Are Interested to Learn a C Programming Language and You Don't Have Experience in Any Programming, You Should Start with a C Programming Language, Read: List of Format Specifiers in C.
Follow Me

0 Comments: