home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a075 / 1.img / TOOLKIT1.EXE / SST134.PRG < prev    next >
Encoding:
Text File  |  1989-08-08  |  372 b   |  19 lines

  1. ********************
  2.  
  3. FUNCTION Fv_con_com
  4.  
  5.    PARAMETERS _sstmoney, _sstrate, _sstmonths
  6.  
  7.    IF TYPE("_sstmoney") + TYPE("_sstrate") + TYPE("_sstmonths") != "NNN"
  8.       RETURN(-1)
  9.    ENDIF
  10.  
  11.    PRIVATE _ssttime, _sstint
  12.  
  13.    _ssttime = _sstmonths / 12
  14.    _sstint = _sstrate / 100
  15.  
  16.    RETURN(_sstmoney * (2.718281828**(_sstint * _ssttime)))
  17.  
  18. * End of File
  19.