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

  1. ********************
  2.  
  3. FUNCTION Pvoffv
  4.  
  5.    PARAMETERS _money, _rate, _term, _periods
  6.  
  7.    IF PCOUNT() != 4
  8.       RETURN(0)
  9.    ELSEIF TYPE("_money") + TYPE("_rate") + TYPE("_term") + TYPE("_periods") != "NNNN"
  10.       RETURN(0)
  11.    ENDIF
  12.  
  13.    * Contributed by C.A.Pantaleoni
  14.  
  15.    PRIVATE _time, _int
  16.  
  17.    _time = _term / _periods
  18.    _int  = _rate / 100
  19.  
  20.    RETURN( 1/(1+(_int/_periods))^(_term*_periods)*_money )
  21.  
  22. * End of File
  23.  
  24.