Advertisement
Guest User

Untitled

a guest
Jul 28th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. public void makePayment(double amount) {
  2. balance -= amount;
  3. }
  4.  
  5. public double checkBalance(double amount) {
  6. return balance;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement