Cod sursa(job #33069)

Utilizator NebhotepMetes Alexandru Nebhotep Data 18 martie 2007 21:22:08
Problema Text Scor 100
Compilator fpc Status done
Runda Arhiva de probleme Marime 0.48 kb
const m=['a'..'z','A'..'Z'];
var s:char;
    l,c:longint;
    f,g:text;
    ok:boolean;
begin
assign(f,'text.in');reset(f);
assign(g,'text.out');rewrite(g);
c:=0;l:=0;ok:=false;
while not eof(f) do begin
      read(f,s);
      if s in m then
         if ok then inc(l)
         else begin
              ok:=true;
              inc(l);
              inc(c);
         end
      else ok:=false;
end;
if l=0 then writeln(g,'0')
   else writeln(g,l div c);
close(g);
end.