I need help putting a space after the A in this so its formatted properly.
Code:
System.out.println("A" + nformat.format(Loans[0].getloan()) + " loan over " + Loans[0].gettime() + " years, at an interest rate of " + (Loans[0].getinterest()*100) + "%"); System.out.println("\twill give you " + Loans[0].getmonths() + " monthly payments of $" + nformat.format(Loans[0].getmonthlypay()));
Comment