ilham_syamsuddin

Untitled

Oct 29th, 2017
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. //Account.java
  2. //represents a bank account
  3.  
  4. public class Account
  5. {
  6. private int accountNumber;
  7. private int pin;
  8. private double availableBalance;
  9. private double totalBalance;
  10.  
  11. //Account constructor initializes attributes
Advertisement
Add Comment
Please, Sign In to add comment