|
|
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: 384 (0x180)
Types: TextFile
Names: »TEMPCONV.PAS«
└─⟦692ac107c⟧ Bits:30005923 PolyPascal-80 V3.10 arbejdsdiskette 1
└─⟦this⟧ »TEMPCONV.PAS«
program tempconv;
var
c,i,j:integer;
begin
for i:=1 to 7 do write(output, 'C' :5, 'F' :5, ' ');
writeln(output);
for i:=0 to 22
do begin
c:=i;
for j:=1 to 7
do begin
write(output, c: 5, round(1.8*c+32): 5, ' ');
c:=c+23;
end;
writeln(output);
end;
end.
«eof»