• Найти сумму элементов столбца, в котором расположен наибольший элемент.
    Pascal

Ответы 1

  • //Pascal ABC.NET 3.1 сборка 1219Const n=6;Var i,j,max,maxj:integer; ar:array[1..n,1..n] of integer;beginrandomize;max:=integer.MinValue;writeln('Array:');for i:=1 to n do begin  for j:=1 to n do   begin    ar[i,j]:=random(500);     write(ar[i,j]:4);    if ar[i,j]>max then     begin      max:=ar[i,j];      maxj:=j;     end;   end; writeln;end;max:=0;writeln;for i:=1 to n domax:=max+ar[i,maxj];write('Res=',max);end.
  • Добавить свой ответ

Войти через Google

или

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

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

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