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 >
Pascal/Delphi Source File  |  1994-03-24  |  105b  |  13 lines

  1.  
  2. program powers;
  3.  
  4. var
  5.   x : real;
  6.  
  7. begin
  8.  
  9.   x := exp(3.853*ln(2.6));
  10.   writeln(x:0:3);
  11.  
  12. end.
  13.