Спрограммой. язык #паскаль. дана строка, состоящая из слов, разделенных пробелами (одним или несколькими). найти длину самого длинного слова.

крыска235 крыска235    3   28.05.2019 12:00    0

Ответы
1amon1 1amon1  25.06.2020 22:59
Program number3;var str: string; i: integer; shortest, longest, current: integer;begin readln(str); shortest := 255; longest := 0; current := 0; for i:=1 to length(str) do begin if (str[i] <> ' ') then current := current + 1 else begin if current > longest then longest := current; current := 0; end; end; if current > longest then longest := current; writeln(longest);readln;end.
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика