ここで何が起こっているのか理解できません。手伝って頂けますか?これは問題のあるコードです:
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 begin)。エラーは次のとおりです: 致命的: 構文エラーです。期待されていましたが、ELSE が見つかりました。
誰かがここでコンパイルしたい場合は、コード全体です: http://pastebin.com/dRg1Lguu