Pagini recente » Cod sursa (job #1729187) | Cod sursa (job #974532) | Cod sursa (job #2887476) | Cod sursa (job #544551) | Cod sursa (job #547926)
Cod sursa(job #547926)
var t : text;
b : boolean;
c : char;
i,j : integer;
begin
assign(t,'text.in');reset(t);b:=false;
while not(eof(t))do begin
read(t,c);
if upcase(c)in['A'..'Z']then begin b:=true;
inc(i);
end
else if b then begin inc(j);b:=false;end;
end;close(t);assign(t,'text.out');rewrite(t);
if j<>0 then writeln(t,i div j)
else writeln(t,0);close(t);
end.