Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Kanol/81d5ba92df9116c2741a to your computer and use it in GitHub Desktop.
Save Kanol/81d5ba92df9116c2741a to your computer and use it in GitHub Desktop.
Program n1;
var a:string; i:integer;
begin
writeln('Введите пароль');
while i<5 do begin
readln(a);
if a = 'password' then begin
writeln('Пароль верен!');
i:=5
end
else
writeln('Пароль неверен!');
i:= i+1;
end;
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment