A
A
Archpriest Metapop2020-01-06 14:16:15
Pascal
Archpriest Metapop, 2020-01-06 14:16:15

A simple Pascal program throws an error; what to do?

----------
Program test;
var
m : array[0..8] of Integer;
begin
writeLn(m);
end.
---------
The answer 'tear off the coder's hands' is quoted, but I would like to essentially, comrades, to the point ...

Answer the question

In order to leave comments, you need to log in

1 answer(s)
H
HemulGM, 2020-01-06
@caramel14

Arrays are not output directly. Output through the loop.

for i:= 0 to 8 do
begin
 write(m[i], ', ');
end;

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question