Составьте программу, заменяющую "yes" на "no" в предложении. !

Zarishka1312 Zarishka1312    3   28.08.2019 10:00    38

Ответы
AksenovaKatya2007 AksenovaKatya2007  06.10.2020 00:21
Var s: string; p: integer;
begin
s := 'no or yes?';
if Pos('yes', s) > 0 then
begin
p := Pos('yes', s);
Delete(s, p, 3);
Insert('no', s, p);
end;
end.
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика