import java.util.Scanner; import java.text.*; public class InvestmentSimulator { public static void main(String[] args) { System.out.println("You are now going to enter the 1st account info."); InvestmentAccount a1=new InvestmentAccount(); System.out.println("You are now going to enter the 2nd account info."); InvestmentAccount a2=new InvestmentAccount(); // Now, I want you to create a DecimalFormat object, which will be used // to control the printing of the dollar values in this problem.