|  | DataMuseum.dkPresents historical artifacts from the history of: Jet Computer Jet80 | 
This is an automatic "excavation" of a thematic subset of
 See our Wiki for more about Jet Computer Jet80 Excavated with: AutoArchaeologist - Free & Open Source Software. | 
top - metrics - download
    Length: 640 (0x280)
    Types: TextFile
    Names: »CELSIUS.PAS«
└─⟦092727b26⟧ Bits:30005927 Demoprogrammer til Pascal bog (Jet-80)
    └─⟦this⟧ »CELSIUS.PAS« 
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»