Pagini recente » Cod sursa (job #83743) | Cod sursa (job #2471765) | Cod sursa (job #1472224) | Cod sursa (job #2888958) | Cod sursa (job #53137)
Cod sursa(job #53137)
var s:char;
fi,fo:text;
ct,suma,ctcuv,rez:longint;
begin
assign(fi,'text.in'); reset(fi);
assign(fo,'text.out'); rewrite(fo);
ct:=0; ctcuv:=0;
while not eof(fi) do
begin
read(fi,s);
if s in ['a'..'z','A'..'Z'] then inc(ct)
else begin
if ct>0 then inc(ctcuv);
suma:=suma+ct;
ct:=0; end;
end;
rez:=suma div ctcuv;
writeln(fo,rez);
close(fi); close(fo);
end.