Pagini recente » Cod sursa (job #2963845) | Cod sursa (job #774551) | Cod sursa (job #2600757) | Cod sursa (job #1521539) | Cod sursa (job #547938)
Cod sursa(job #547938)
var t : text;
b : boolean;
c : char;
i,j : longint;
begin
assign(t,'text.in');reset(t);b:=false;
while not(eof(t))do begin
read(t,c);
if not(upcase(c)in['A'..'Z'])then b:=false
else begin inc(i);
if not(b) then begin inc(j);b:=true;end;
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.