public class TestAccount{ public static void main(String[] args){ Account ac1 = new Account(100,500.00,0.03); Account ac2 = new Account(200,1250.00,0.03); Account ac3 = new Account(300,700.00,0.02); ac1.computeInterest(); ac1.printAccountInfo(); System.out.println(); ac2.computeInterest(); ac2.printAccountInfo(); System.out.println(); ac3.computeInterest(); ac3.printAccountInfo(); System.out.println(); } }