(java) Instantiate two savingsAccount objects,
saver1 and saver2, with balances of $2000.00 and $3000.00, respectively (was trying to figure out the formula, what I have written so far is as follows, and I am trying to see if I missed something:
public class SavingsAccountTest
{
// main method begins program execution
public static void main( String[] args )
{
System.out.println( "Monthly Balances for one year at .04 " );
}// end printout{
// create a SavingsAccount object
private int Saver 1( 2000 ); // Saver #1
private int Saver 2( 3000 ); // Saver #2
}// end saver