September Morn Update

This commit is contained in:
Ingy döt Net 2019-09-12 10:33:56 -07:00
parent 4e2d22a71d
commit aac6731f2c
6856 changed files with 141342 additions and 21127 deletions

View file

@ -1,24 +1,19 @@
program LetterFrequency;
program letterFrequency(input, output, stdErr);
var
textFile: text;
character: char;
counter: array[0..255] of integer;
i: integer;
chart: array[char] of integer;
c: char;
begin
for i := low(counter) to high(counter) do
counter[i] := 0;
assign(textFile, 'a_text_file.txt');
reset(textFile);
while not eof(textFile) do
begin
while not eoln(textFile) do
begin
read(textFile, character);
inc(counter[ord(character)]);
end;
readln(textFile);
end;
for i := low(counter) to high(counter) do
if counter[i] > 0 then
writeln(char(i), ': ', counter[i]);
for c := low(chart) to high(chart) do
begin
chart[c] := 0;
end;
// parameter-less EOF() checks for EOF(input)
while not EOF() do
begin
read(c);
inc(chart[c]);
end;
// now, chart[someLetter] gives you the letters frequency
end.