Ответ: constN=17;vari,sum,col:integer;a:array[1..N] of integer;beginfor i:=1 to N do readln(a[i]);for i:=1 to N do begin if (a[i]>0) then inc(col);if (a[i]>0) then sum:=sum+a[i];end;writeln(sum,’ ‘, col);end.
Ответ: //Pascal ABC.NET 3.1.0.1250const N = 17;begin var A := ReadArrInteger(N).Where(x -> x > 0); writeln(‘Сумма положительных элементов: ‘, A.Sum); writeln(‘Количество положительных элементов: ‘, A.Count)end.