Program spočíta medzery v texte uloženom v textovom súbore
Delphi & Pascal (česká wiki)
Kategórie: Zadání z Pascalu
Autor: Pheo
web: pascalsource.ic.cz
Program: Count_space.pas
Soubor exe: Count_space.exe
Soubor ubuntu: Count_space
Potřebné: K_pr4.txt
Autor: Pheo
web: pascalsource.ic.cz
Program: Count_space.pas
Soubor exe: Count_space.exe
Soubor ubuntu: Count_space
Potřebné: K_pr4.txt
Program spočíta medzery v texte uloženom v textovom súbore.
{ COUNT_SPACE.PAS Copyright (c) Pheo } { Program spočíta medzery v texte uloenom v textovom súbore. } { } { Datum:05.04.2005 http://www.trsek.com } program count_space; var t:text; c:char; pocet:integer; begin assign(t,'k_pr4.txt'); reset(t); pocet:=0; while not eof(t) do begin read(t,c); if c=' ' then pocet:=pocet+1 end; writeln('Pocet medzier v subore ',pocet); readln; end.