fork download
  1. #include <iostream>
  2. #include<bits/stdc++.h>
  3. using namespace std;
  4.  
  5. pair<int,int> SumOfArray(int n ,int a[]){
  6. int sum=0;
  7. int odd=0;
  8. for(int i=0;i<n;i++){
  9. if(a[i]%2==0){
  10. sum=sum+a[i];
  11. }
  12. else{
  13. odd=odd+a[i];
  14. }
  15. }
  16. return {sum,odd};
  17. }
  18.  
  19. int main() {
  20. int n;
  21. cin>>n;
  22. int a[n];
  23. for(int i=0;i<n;i++){
  24. cin>>a[i];
  25. }
  26. pair<int,int> res=SumOfArray(n,a);
  27. cout<<res.first<<" "<<res.second;
  28. return 0;
  29. }
Success #stdin #stdout 0.01s 5284KB
stdin
5
1 2 3 4 5
stdout
6 9