我这样给二维数组赋值为什么会出现incompatible types: 'char' and 'string'的错误?
procedure TForm1.Button2Click(Sender: TObject);
var
a:array[1..100] of string;
i,j:integer;
begin   for i:=0 to 9 do
      for j:=0 to 9 do
         a[i,j]:=inttostr(i+j);
end;end.