Difference between revisions of "Basic Pascal Tutorial/Chapter 5/Multidimensional arrays"

From Lazarus wiki
Jump to navigationJump to search
m (Text replace - "delphi>" to "syntaxhighlight>")
m (bypass language bar/categorization template redirect [cf. discussion])
 
(7 intermediate revisions by 5 users not shown)
Line 1: Line 1:
 +
{{Basic Pascal Tutorial/Chapter 5/Multidimensional arrays}}
 +
{{TYNavigator|Chapter 5/1-dimensional arrays|Chapter 5/Records}}
 +
 
5D - Multidimensional Arrays (author: Tao Yue, state: unchanged)
 
5D - Multidimensional Arrays (author: Tao Yue, state: unchanged)
  
 
You can have arrays in multiple dimensions:
 
You can have arrays in multiple dimensions:
<syntaxhighlight>
+
 
 +
<syntaxhighlight lang=pascal>
 
type
 
type
 
   datatype = array [enum_type1, enum_type2] of datatype;
 
   datatype = array [enum_type1, enum_type2] of datatype;
Line 8: Line 12:
  
 
The comma separates the dimensions, and referring to the array would be done with:
 
The comma separates the dimensions, and referring to the array would be done with:
<syntaxhighlight>
+
 
 +
<syntaxhighlight lang=pascal>
 
a [5, 3]
 
a [5, 3]
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
Two-dimensional arrays are useful for programming board games. A tic tac toe board could have these type and variable declarations:
 
Two-dimensional arrays are useful for programming board games. A tic tac toe board could have these type and variable declarations:
<syntaxhighlight>
+
 
 +
<syntaxhighlight lang=pascal>
 
type
 
type
 
   StatusType = (X, O, Blank);
 
   StatusType = (X, O, Blank);
Line 22: Line 28:
  
 
You could initialize the board with:
 
You could initialize the board with:
<syntaxhighlight>
+
 
 +
<syntaxhighlight lang=pascal>
 
for count1 := 1 to 3 do
 
for count1 := 1 to 3 do
 
   for count2 := 1 to 3 do
 
   for count2 := 1 to 3 do
Line 29: Line 36:
 
You can, of course, use three- or higher-dimensional arrays.
 
You can, of course, use three- or higher-dimensional arrays.
  
{|style=color-backgroud="white" cellspacing="20"
+
{{TYNavigator|Chapter 5/1-dimensional arrays|Chapter 5/Records}}
|[[1-dimensional_arrays|previous]] 
 
|[[Contents|contents]]
 
|[[Records|next]]
 
|}
 

Latest revision as of 16:20, 20 August 2022

български (bg) English (en) français (fr) 日本語 (ja) 中文(中国大陆)‎ (zh_CN)

 ◄   ▲   ► 

5D - Multidimensional Arrays (author: Tao Yue, state: unchanged)

You can have arrays in multiple dimensions:

type
  datatype = array [enum_type1, enum_type2] of datatype;

The comma separates the dimensions, and referring to the array would be done with:

a [5, 3]

Two-dimensional arrays are useful for programming board games. A tic tac toe board could have these type and variable declarations:

type
  StatusType = (X, O, Blank);
  BoardType = array[1..3,1..3] of StatusType;
var
  Board : BoardType;

You could initialize the board with:

for count1 := 1 to 3 do
  for count2 := 1 to 3 do
    Board[count1, count2] := Blank;

You can, of course, use three- or higher-dimensional arrays.

 ◄   ▲   ►