|
DataMuseum.dkPresents historical artifacts from the history of: CP/M |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about CP/M Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - download
Length: 768 (0x300) Types: TextFile Names: »BINOM4.PAS«
└─⟦08ea08c61⟧ Bits:30003924 PolyPascal programmer └─ ⟦this⟧ »BINOM4.PAS« └─⟦092727b26⟧ Bits:30005927 Demoprogrammer til Pascal bog (Jet-80) └─ ⟦this⟧ »BINOM4.PAS« └─⟦3702e543b⟧ Bits:30003064 Demoprogrammer A-J til Pascal bog └─ ⟦this⟧ »BINOM4.PAS« └─⟦f983c2ef3⟧ Bits:30004681 Pascal opgaver (Butler) └─ ⟦this⟧ »BINOM4.PAS«
PROGRAM binom4; VAR n, r, graense : INTEGER; FUNCTION k(n, r : INTEGER) : INTEGER; TYPE tabel = ARRAY(.0 .. 20, 0 .. 20.) OF INTEGER; VAR tab : tabel; i, j : INTEGER; BEGIN FOR i := 1 TO n DO FOR j := 0 TO i DO IF (j = 0) OR (i = j) THEN tab(.i, j.) := 1 ELSE tab(.i, j.) := tab(.i - 1, j.) + tab(.i - 1, j - 1.); k := tab(.n, r.); END; BEGIN WRITE(CLRHOM); WRITE('Tast antal linier: '); READLN(graense); FOR n := 1 TO graense DO BEGIN FOR r := 0 TO n DO WRITE(k(n,r) : 4); WRITELN; END; END. «eof»