1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
public class AccountTest { /** * @param args */ public static void main(String[] args) { Account a1 = new Account(); // Instantiation of 'Account' class a1.setBalance(200.0); // a1.deposit(100.0); // a1.withdraw(10.0); } }