program zadanie; uses crt; var tekst:string; i,cf:integer; begin clrscr; Writeln('Podaj ciag znaków'); readln(tekst); for i := 1 to length(tekst) do if (tekst[i] = '1') or (tekst[i] = '2') or (tekst[i] = '3') or (tekst[i] = '4') or(tekst[i] = '5') or (tekst[i] = '6') or (tekst[i] = '7') or (tekst[i] = '8') or(tekst[i] = '9') or (tekst[i] = '0') then inc(cf); Writeln('W podanym ciagu znakow jest ',cf,' cyfr'); readln; end.
program zadanie;
uses crt;
var
tekst:string;
i,cf:integer;
begin
clrscr;
Writeln('Podaj ciag znaków');
readln(tekst);
for i := 1 to length(tekst) do
if (tekst[i] = '1') or (tekst[i] = '2') or (tekst[i] = '3') or (tekst[i] = '4')
or(tekst[i] = '5') or (tekst[i] = '6') or (tekst[i] = '7') or (tekst[i] = '8')
or(tekst[i] = '9') or (tekst[i] = '0') then inc(cf);
Writeln('W podanym ciagu znakow jest ',cf,' cyfr');
readln;
end.