• Одномерный массив
    Задание - Вывести на экран одномерный массив, раскрасив в нём зелёным цветом минимальный элемент массива

    Шапочка от программы

    Uses Crt;
    Type Mas = array [1..14] of integer;
    Var G : Mas;
    i:integer;
    Begin
    Randomize;
    For i:=1 to 14 do begin
    G[i]:=random(42)-21;
    Write(G[i]:4);
    End;

Ответы 1

  • Uses Crt;Type Mas = array [1..14] of integer;Var G : Mas;i,min:integer;Beginmin:=MaxInt;Randomize;For i:=1 to 14 do beginG[i]:=random(42)-21;if (g[i]<min) then min:=g[i];End;For i:=1 to 14 do begintextcolor(7);if (g[i]=min) then textcolor(10);write (g[i]:3,' ':2);end;end.//ABC Pascal
  • Добавить свой ответ

Войти через Google

или

Забыли пароль?

У меня нет аккаунта, я хочу Зарегистрироваться

How much to ban the user?
1 hour 1 day 100 years