In array B [5,6], element values are in the range [-25,30]. Count the number of elements whose value is a multiple of 4.

var
B: array [1..5,1..6] of integer;
number_of_el: integer;

begin
for i: integer: = 1 to 5 do
begin
for j: integer: = 1 to 6 do
begin
B [i, j]: = random (55) -25;
write (B [i, j]: 9);
if (B [i, j] mod 4 = 0) then
number_of_el: = number_of_el + 1;
end;
writeln ();
end;
writeln (‘Amount:’, number_of_el);
end.



One of the components of a person's success in our time is receiving modern high-quality education, mastering the knowledge, skills and abilities necessary for life in society. A person today needs to study almost all his life, mastering everything new and new, acquiring the necessary professional qualities.