Zdravím, dokázal by mi někdo poradit jak mám v poli
procedure novysal;
var i,j: byte;
begin
for i:=1 to r do
begin
for j:=1 to s do
begin
if (i=1) and (j=1) then zahlavi;
if j=1 then write(i:3,'r');
if a[i,j] = 0 then write('x':4);
if a[i,j] = 1 then write('o':4);
end;
writeln;
end;
end;
Zjistit, kolik je tam těch koleček? Zkoušel jsem to takhle:
procedure volnamista;
var i,j : byte;
a : integer;
begin
volnamista:=0;
for r:=1 to 10 do
for s:=1 to 8 do
if a[i,j]=1 then
begin
volnamista:=volnamista+1;
writeln('Pocet volnych mist je: ',volnamista);
end;
Ale nejede to a nevím vůbec co s tím :-(