Курсовая работа: Работа с текстовыми строками, двумерными массивами, файловыми структурами данных
for j := i + 1 to length(s2) do
if s2[i + 1] <> ' ' then
if s2[j] = ' ' then begin
k2 := k2 + 1;
slova2[k2] := copy(s2, i + 1, j - i - 1);
break;
end;
end;
end;
end;
procedure chmax;
begin
m1 := 0;
m2 := 0;
while not eof(first) do
begin
readln(first, S1);
m1 := m1 + 1;
end;
while not eof(second) do
begin
readln(second, S2);
m2 := m2 + 1;
end;
if m1 < m2 then m := m1 else m := m2;
close(first);
reset(first);
close(second);
reset(second);