|
|
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 - metrics - download
Length: 640 (0x280)
Types: TextFile
Names: »FAHRENHE.PAS«
└─⟦08ea08c61⟧ Bits:30003924 PolyPascal programmer
└─⟦this⟧ »FAHRENHE.PAS«
└─⟦092727b26⟧ Bits:30005927 Demoprogrammer til Pascal bog (Jet-80)
└─⟦this⟧ »FAHRENHE.PAS«
└─⟦3702e543b⟧ Bits:30003064 Demoprogrammer A-J til Pascal bog
└─⟦this⟧ »FAHRENHE.PAS«
PROGRAM fahrenhe;
VAR
celsius, fahrenheit, reamur : REAL;
BEGIN
WRITE(CLRHOM);
WRITELN('Programmet udskriver CELSIUS- og REAUMUR-gradtallene,');
WRITELN('når man indtaster gradtallet for FAHRENHEIT');
WRITELN;
WRITE('Indtast FAHRENHEIT: '); READLN(fahrenheit);
celsius := (fahrenheit - 32) / 1.8;
reamur := celsius * 0.8;
WRITELN;
WRITELN('Fahrenheit: ', fahrenheit : 7 : 2);
WRITELN('Celsius: ', celsius : 7 : 2);
WRITELN('Reamur: ', reamur : 7 : 2);
WRITELN;
END.
«eof»