我有这部分代码。我的问题是变量 i: 1..10;是什么以及我要声明什么。谢谢
type
Str25 = String[25];
TBookRec = Record
Title, Author, ISBN : Str25;
Price : Real;
End;
Var
BookRecArray : Array[1..10] of TBookRec;
tempBookRec : TBookRec;
bookRecFile : File of TBookRec;
i : 1..10;
Run Code Online (Sandbox Code Playgroud)