Pagini recente » Cod sursa (job #2385557) | Cod sursa (job #1281777) | Cod sursa (job #1500328) | Cod sursa (job #1651443) | Cod sursa (job #533960)
Cod sursa(job #533960)
program ff;
var f,g:text;
c:char;
nrc,ltot,lcur:integer;
ok:boolean;
begin
assign(f,'text.in');
reset(f);
assign(g,'text.out');
rewrite(g);
nrc:=0; ltot:=0;
ok:=false;
while not eof(f) do
begin
read(f,c);
if ((c>='a') and (c<='z')) or ((c>='A') and (c<='Z')) then
begin
lcur:=lcur+1;
ok:=true;
end
else
begin
if ok then
begin
inc(nrc);
ok:=false;
ltot:=lcur+ltot;
lcur:=0;
end;
end;
end;
if ((c>='a') and (c<='z')) or ((c>='A') and (c<='Z')) then
if ok then
begin
ltot:=ltot+lcur;
inc(nrc);
end;
write(g,trunc(ltot/nrc));
close(f);
close(g);
end.