DataMuseum.dk

Presents historical artifacts from the history of:

CP/M

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about CP/M

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦6b6503ed1⟧ TextFile

    Length: 512 (0x200)
    Types: TextFile
    Names: »SEK.PAS«

Derivation

└─⟦d814f614c⟧ Bits:30008872 EDB Trænings- og Erhvervs Center / Almen Nyttig Data Service
    └─⟦this⟧ »SEK.PAS« 

TextFile

PROGRAM SEK;

VAR
   I : INTEGER;
   J : INTEGER;
   A,
   B,
   C : INTEGER;

LABEL
   NESTE,
   SLUT;

BEGIN
NESTE:
   READ(I);
   WRITE(' X ');
   READLN(J);
   
FOR C := 1 TO 20 DO BEGIN
   FOR A := 1 TO I DO BEGIN
      FOR B := 1 TO J DO BEGIN END;
   END;
   WRITE('.');
END;

WRITELN;

IF KEYPRESS THEN GOTO SLUT;

GOTO NESTE;

SLUT:
END.
 
«eof»