import tester.*; //Used with the tester. public class ExamplesBankAccts { ExamplesBankAccts(){} // examples of checking accounts Account check1 = new Checking(0001, 0, "First Checking Account", 0); Account check2 = new Checking(0002, 100, "Second Checking Account", 50); Account check3 = new Checking(0003, 500, "Third Checking Account", 0); // examples of savings accounts Account savings1 = new Savings(0004, 0, "First Savings Account", 4.9); Account savings2 = new Savings(0005, 100, "Second Savings Account", 8.9); Account savings3 = new Savings(0006, 0, "Third Savings Account", 1.1); }