Sorry.
PROGRAM Ordnererstellen; var a,e: integer; BEGIN write('Bezeichnung des 1. Ordners: '); Readln(a); write('Bezeichnung des letzten Ordners: '); Readln(e); Repeat MkDir(a); a=a+100; Until a=e; END.
Ich erhalte immer folgende Fehler:
test.pas(9,10) Error: Incompatible type for arg no. 1:Got "SmallInt", expect test.pas(10,10) Error: Illegal expression test.pas(12,6) Fatal:Ther were 2 errors compiling module, stopping test.pas(0) Fatal: Compilation aborted