DataMuseum.dk

Presents historical artifacts from the history of:

RegneCentralen RC700 "Piccolo"

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

See our Wiki for more about RegneCentralen RC700 "Piccolo"

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download

⟦18fa0e65a⟧ TextFile

    Length: 640 (0x280)
    Types: TextFile
    Names: »CELSIUS.PAS«

Derivation

└─⟦3702e543b⟧ Bits:30003064 Demoprogrammer A-J til Pascal bog
    └─ ⟦this⟧ »CELSIUS.PAS« 

TextFile

PROGRAM celsius;

  VAR
    celsius, fahrenheit, reamur : REAL;
  
  BEGIN
    WRITE(CLRHOM);
    WRITELN('Programmet udskriver REAMUR- og FAHRENHEIT-gradtallene,');
    WRITELN('når man indtaster gradtallet for CELSIUS');
    WRITELN;
    WRITE('Indtast CELSIUS: '); READLN(celsius);
    reamur := celsius * 0.8;
    fahrenheit := celsius * 1.8 + 32;
    WRITELN;
    WRITELN('Celsius:    ', celsius : 7 : 2);
    WRITELN('Reamur:     ', reamur : 7 : 2);
    WRITELN('Fahrenheit: ', fahrenheit : 7 : 2);
    WRITELN;
  END.
«eof»