program Pocet;
uses crt;
var s: text;
zn: char;
A: array [' '..'z'] of integer;
begin
clrscr;
assign(s,'pokus.txt');
reset(s);
read (s,zn);
while not eof(s) do;
begin;
A[zn]:= A[zn]+1;
end;
writeln(zn,' ',A[zn]);
close(s);
end.
tak jsem to dostal do tohohle stavu kdy to jde skompilovat ale prakticky okamzite se to vypne coz je asi dane tim ze tam je ten zmineny nekonecny cyklus, napadlo me jeste zkusit pouzit repeat until ale priznam se ze nevim presne kam s nim.