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); } }