Guest User

Untitled

a guest
Aug 30th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. package ca.uwo.csd.cs2212.USERNAME;
  2.  
  3. public class BankAccount {
  4.  
  5. private double balance;
  6.  
  7. public BankAccount(double balance) {
  8. this.balance = balance;
  9. }
  10.  
  11. public double debit(double amount) {
  12. if (balance < amount) {
  13. amount = balance;
  14. }
  15.  
  16. balance -= amount;
  17. return amount;
  18. }
  19.  
  20. }
Add Comment
Please, Sign In to add comment