«Угадай число» (программа Паскаль)

innalemesh1 innalemesh1    2   16.04.2019 23:00    0

Ответы
87015148669 87015148669  16.04.2019 23:00
program z5;
var comp: integer;
igrok : integer;
begin
randomize;
comp:=random(100);
 repeat
write ('Введите число');  read (igrok);
if igrok > comp then writeln ('Слишком много…')
else if igrok<comp then writeln ('Слишком мало…')
else writeln ('Вы угадали! ');
until igrok=comp;
end.
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Другие предметы