home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / wp / dospel37.zip / DO-98.ZIP / RENTE.CDO < prev    next >
Text File  |  1991-12-31  |  483b  |  26 lines

  1. "
  2. "Voorbeeld DOCALC2, Schuld berekening met maandrente en maandelijkse afloss
  3. "Example DOCALC2, Credit calculation.
  4.  
  5. Lening       := 11000
  6. Maandrente   := 1.287
  7. Aflossing    := 522.20
  8. Aantalmaanden:= 12
  9.  
  10.  
  11. f      := 1+maandrente/100
  12. Schuld1:= Lening*f-aflossing
  13. Schuld2:= Schuld1*f-aflossing
  14.  
  15. Schuld := Lening*f^aantalmaanden-aflossing*(f^aantalmaanden-1)/(f-1)
  16.  
  17.  
  18. "Schuld na aantalmaanden:
  19.  
  20. Schuld
  21.  
  22.  
  23. "Betaalde rente:
  24.  
  25. Aantalmaanden*aflossing-(lening-schuld)
  26.