我不明白这里发生了什么。你能帮我个忙吗?这是有问题的代码:
While not EOF(Archi) do begin
index:= index + 1;
Read(Archi, Alumno[index]);
Promes[index] := (Alumno[index].nota1 + Alumno[index].nota2) / 2;
if Promes[index] >= 6 then begin
alguPromo := true;
PromosIndex := PromosIndex + 1;
Promos[PromosIndex]:= Alumno[index];
end;
else begin
if Promes[index] > 4 then cantiRecu:= cantiRecu + 1;
else begin
LibresIndex += 1;
Libres[LibresIndex] := Alumno[index];
end;
end;
end;
编译器在此代码的第 10 行标记错误(否则开始)。错误是:致命:语法错误,; 预期但 ELSE 发现。
如果有人想托盘编译这里是整个代码: http: //pastebin.com/dRg1Lguu