Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. package bankService;
  2.  
  3. class Account {
  4.     String username;
  5.     String password;
  6.     double balance;
  7.  
  8.     Account(String username, String password){
  9.         this.username = username;
  10.         this.password = password;
  11.         this.balance = 0;
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement