如何在不声明200个变量的情况下执行此操作?

时间:2013-09-11 15:21:19

标签: string delphi variables pascal

我认为我的问题有一个解决方案,但我找不到,你能帮助我吗?

我想做这样的事情:

var
  a, b, c: string;
  d: integer;
begin
  a := StringGrid1.Cells[1,1];
  b := StringGrid1.Cells[2,1];
  c := StringGrid1.Cells[3,1];
  d := StrToInt(a) + StrToInt(b) + StrToInt(c);
  StringGrid1.Cells[4,1] := IntToStr(d);
end;

但是现在我需要声明200个字符串变量,就像在这个例子中一样。无论如何,这有什么“捷径”吗?

这是我尝试过的循环:

var
  x: integer;
begin
  for x := 1 to 200 do 
  begin 
    Form2.StringGrid1.Cells[3,209] := IntToStr(x);
  end;
end;

1 个答案:

答案 0 :(得分:8)

var
  Total: Integer;
  I: Integer;
begin
  Total := 0;
  for I := 1 to 3 do
    Inc(Total, StrToInt(StringGrid1.Cells[I, 1]));
  StringGrid1.Cells[4, 1] := IntToStr(Total);
end;