Pagini recente » Cod sursa (job #2308589) | Cod sursa (job #3003846) | Cod sursa (job #2222376) | Cod sursa (job #1324939) | 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.