Определить количество отрицательных элементов матрицы

thiiagooBR thiiagooBR    1   13.06.2019 11:00    4

Ответы
shrnv shrnv  10.07.2020 13:48
Const n=5;
Var a:array [1..n,1..n] of integer; i,j,k:integer; 
Begin
for i:=1 to n do
for j:=1 to n do begin
readln(a[i,j]);
if a[i,j]<0 then inc(k); end;
writeln(k);
end.
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика