Guest User

Untitled

a guest
Jan 18th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Public Class Deposit
  2.     Public Dim Interest As Integer
  3.     Public Dim Deposit As Integer
  4.    
  5.     Public Function TotalBalance(Year As Integer) As Integer
  6.         Balance = Deposit * (1 + (Year * Interest))
  7.         Return Balance
  8.     End Function
  9.    
  10. End Class
Add Comment
Please, Sign In to add comment