найти ошибку в коде паскаля - Program arrays;
var mas: array [0..7] of integer;
begin
writeln(mas);
end.
Мне постоянно вот это выдаёт -
Compiling prog.pas
prog.pas(6,13) Error: Can't read or write variables of this type
prog.pas(8,4) Fatal: There were 1 errors compiling module, stopping
Fatal: Compilation aborted
Error: /usr/bin/ppc386 returned an error exitcode (normal if you did not specify a source file to be compiled)
Массивы целиком в одно действие не выводятся. А вот каждый элемент массива мы можем вывести. По очереди. Например от 0 до 7 (8 штук)
Program arrays;
var mas: array [0..7] of integer;
i: integer;
begin
for i:=0 to 7 do
writeln(mas[i],' ');
end.