中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

delphi二維數組怎么定義和賦值

小億
249
2023-12-01 18:28:34
欄目: 編程語言

在Delphi中,可以使用類似于其他語言的二維數組的概念來定義和賦值二維數組。以下是一個示例:

  1. 定義二維數組:
var
  myArray: array of array of Integer;
  1. 分配二維數組的大小:
SetLength(myArray, rowCount, colCount);

其中,rowCountcolCount分別表示二維數組的行數和列數。

  1. 賦值二維數組的元素:
myArray[rowIndex, colIndex] := value;

其中,rowIndexcolIndex表示要賦值的元素的行索引和列索引,value表示要賦給該元素的值。

完整的示例代碼如下所示:

program TwoDimensionalArray;

{$APPTYPE CONSOLE}

uses
  System.SysUtils;

var
  myArray: array of array of Integer;
  rowCount, colCount: Integer;
  rowIndex, colIndex: Integer;

begin
  rowCount := 3;
  colCount := 4;
  
  SetLength(myArray, rowCount, colCount);
  
  for rowIndex := 0 to rowCount - 1 do
  begin
    for colIndex := 0 to colCount - 1 do
    begin
      myArray[rowIndex, colIndex] := rowIndex * colCount + colIndex;
    end;
  end;
  
  for rowIndex := 0 to rowCount - 1 do
  begin
    for colIndex := 0 to colCount - 1 do
    begin
      Write(myArray[rowIndex, colIndex], ' ');
    end;
    Writeln;
  end;
  
  Readln;
end.

上述的示例代碼定義了一個3行4列的二維數組,并使用嵌套循環對其進行賦值,并最后輸出二維數組的內容。輸出結果為:

0 1 2 3
4 5 6 7
8 9 10 11

0
苏尼特右旗| 土默特左旗| 酉阳| 乌鲁木齐县| 漠河县| 奉贤区| 鄱阳县| 锦州市| 南江县| 沂南县| 庆阳市| 兰溪市| 昭通市| 泊头市| 商水县| 永胜县| 舟曲县| 博客| 右玉县| 铜鼓县| 德州市| 广昌县| 登封市| 巩义市| 枣庄市| 舒城县| 六安市| 含山县| 财经| 布拖县| 应城市| 肇州县| 米林县| 宜城市| 出国| 梅州市| 如东县| 谢通门县| 夏邑县| 拜城县| 诸暨市|