Составьте программу, заменяющую "yes" на "no" в предложении. Помогите пожалуйста!!! Срочно!!!!
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.
Спасибо большое)))