var srp,sro:real;
n,p,o:integer;
begin
srp:=0;
sro:=0;
p:=0;
o:=0
repeat
readln(n);
if (n>0) then begin srp:=srp+n; inc(p); end;
if (n<0) then begin sro:=sro+n; inc(o); end;
until n=0;
writeln('Ср положительных= ',srp/p);
writeln('Ср отрицательных= ',sro/o);
end.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
var srp,sro:real;
n,p,o:integer;
begin
srp:=0;
sro:=0;
p:=0;
o:=0
repeat
readln(n);
if (n>0) then begin srp:=srp+n; inc(p); end;
if (n<0) then begin sro:=sro+n; inc(o); end;
until n=0;
writeln('Ср положительных= ',srp/p);
writeln('Ср отрицательных= ',sro/o);
end.