Объяснение:
procedure colors();
var number: integer; //Номер цвета
mess: string; //Сообщение, которое будем выводить
begin
{Считывание значения}
write('Input number (1-4): ');
readln(number);
writeln();
mess:='';
case number of
1: mess := 'Color is white';
2: mess := 'Color is gray';
3: mess := 'Color is red';
4: mess := 'Color is blue';
else
mess := 'There is no such color';
end;
writeln(mess);
readln(); // удерживаем консоль
// Вызов процедуры
colors();
end.
Объяснение:
procedure colors();
var number: integer; //Номер цвета
mess: string; //Сообщение, которое будем выводить
begin
{Считывание значения}
write('Input number (1-4): ');
readln(number);
writeln();
mess:='';
case number of
1: mess := 'Color is white';
2: mess := 'Color is gray';
3: mess := 'Color is red';
4: mess := 'Color is blue';
else
mess := 'There is no such color';
end;
writeln(mess);
readln(); // удерживаем консоль
end;
begin
// Вызов процедуры
colors();
end.