int n, a[n],s;
s=0;
for (int i=0; i<10; i++){
cin >> a[i];
if ((a[i]>=-2) & (a[i]<=19){
s+=a[i];
}
cout << s;
Объяснение:
int n, a[n],s;
s=0;
for (int i=0; i<10; i++){
cin >> a[i];
if ((a[i]>=-2) & (a[i]<=19){
s+=a[i];
}
cout << s;
Объяснение: