Begin
for i:=1 to 20 then begin
a[i]:=random(100)-100;
if (a[i]<0) then inc(k);<br> if (a[i]=0) then inc(b);
if (a[i]>0) then inc(c);
end;
writeln("Кол-во положительных чисел: ", c);
writeln("Количество отрицательных чисел:",k);
writeln("Количество нулевых:", b);