Выяснить, встречаются ли в строке пары букв "но" или "он"
Категория: Delphi/Pascal
2012-01-02 14:42:01
code: #pascal
uses crt; var s:string; i:integer; begin clrscr; Write('s: ');readln(s); i:=1; while i<length(s)-1 do if (i=pos('но',s))or(i=pos('он',s))then begin writeln('verno'); readln; exit; end else inc(i); if i=length(s)-1 then writeln('ne verno'); readln end.
автор: puporev
Поделиться: