Контрольные задания > The image also describes a second programming task related to two-dimensional arrays. Can you extract and present the description of this second task?
Вопрос:
The image also describes a second programming task related to two-dimensional arrays. Can you extract and present the description of this second task?
В двумерном массиве, состоящем из целочисленных элементов, в каждом столбце поменять местами наибольший по модулю и последний не принадлежащий интервалу (а, b) элементы массива.
const n=10; m=7;
type mas=array [1..n, 1..m] of Integer;