public class PiggyBankRunner{ public static void main(String[] args) { PiggyBank pb1 = new PiggyBank(); PiggyBank pb2 = new PiggyBank(6, 3, 2, 4); pb1.deposit(1, 1, 1, 0); System.out.printf("PiggyBank # 1's value = %2.2f" , pb1.getValue()); System.out.printf("PiggyBank # 2's value = %2.2f" , pb2.getValue()); } }