Ответы
Ответ дал:
0
program n;
var
i: integer;
st: string;
begin
writeln('Введите строку');
readln(st);
for i:=1 to length(st) do begin
if st[i]='е' then st[i]:='и';
if st[i]='а' then st[i]:='о';
end;
writeln(st);
end.
var
i: integer;
st: string;
begin
writeln('Введите строку');
readln(st);
for i:=1 to length(st) do begin
if st[i]='е' then st[i]:='и';
if st[i]='а' then st[i]:='о';
end;
writeln(st);
end.
Вас заинтересует
2 года назад
7 лет назад
9 лет назад
10 лет назад