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

  1. ********************
  2.  
  3. FUNCTION Pv_con_str
  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, _ssta, _sstb
  12.  
  13.    _ssttime = _sstmonths / 12
  14.    _sstint = _sstrate / 100
  15.    _ssta = _sstmoney /(LOG(_sstmoney + _sstint))
  16.    _sstb = _sstmoney/((LOG(_sstmoney + _sstint)) * ((_sstmoney + _sstint)**_ssttime))
  17.    RETURN(_ssta - _sstb)
  18.  
  19. * End of File
  20.