var s: string;
c: char;
p: integer;
begin
writeln('Введите слово: ');
readln(s);
writeln('Введите букву: ');
readln(c);
p:=pos('и', s);
if p > 0 then
insert(c, s, p + 1);
writeln(s);
end
else
writeln('В слове нет буквы и');
end.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
var s: string;
c: char;
p: integer;
begin
writeln('Введите слово: ');
readln(s);
writeln('Введите букву: ');
readln(c);
p:=pos('и', s);
if p > 0 then
begin
insert(c, s, p + 1);
writeln(s);
end
else
writeln('В слове нет буквы и');
end.