home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 18
/
CD_ASCQ_18_111294_W.iso
/
dos
/
prg
/
pas
/
gfxfx
/
powers.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1994-03-24
|
105b
|
13 lines
program powers;
var
x : real;
begin
x := exp(3.853*ln(2.6));
writeln(x:0:3);
end.