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

  1. ********************
  2.  
  3. FUNCTION Mortgage
  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.    ELSEIF _periods = 0
  12.       RETURN(0)
  13.    ENDIF
  14.  
  15.    * Contributed by C.A.Pantaleoni
  16.  
  17.    PRIVATE _time, _int
  18.  
  19.    _time = _term / _periods
  20.    _int  = _rate / 100
  21.  
  22.    RETURN( (_int/_periods)/(1-1/(1+(_int/_periods))^(_term*_periods))*_money)
  23.  
  24. * End of File
  25.