Package homework5.Account

Examples of homework5.Account.BaseAccount


    System.out.println("2. Savings");
    System.out.println("3. Exit system");
    System.out.printf("Selection: ");
    accnt_selection = input.nextInt();
    //what was selected and show appropriate response
    BaseAccount account;
    switch(accnt_selection.intValue()) {
    case 1: // checking
      account = AccountCreator.createChecking(0);
      main_menu_loop(account,"Checking");
      break;
View Full Code Here

TOP

Related Classes of homework5.Account.BaseAccount

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.