#include <iostream>
using namespace std;
//int main()
//{
//
// printf("enter the number of digits\n");
// int n, sum;
// int *d = new int[n];
// cin >> n;
// printf("enter numbers\n");
// for(int i = 0; i < n; ++i)
// {
// cin >> d[i];
// if(d[i] % 2 == 0)
// sum += d[i];
// }
// printf("%d", sum);
// delete [] d;
//}
Объяснение:
#include <iostream>
using namespace std;
//int main()
//{
//
// printf("enter the number of digits\n");
// int n, sum;
// int *d = new int[n];
// cin >> n;
// printf("enter numbers\n");
// for(int i = 0; i < n; ++i)
// {
// cin >> d[i];
// if(d[i] % 2 == 0)
// {
// sum += d[i];
// }
// }
// printf("%d", sum);
// delete [] d;
//}
Объяснение: