day115 java and english

来源:互联网 发布:结构强度仿真软件 编辑:程序博客网 时间:2024/06/05 01:05
/*
 * This class creates the program to test the banking classes.
 * It creates a set of customers, with a few accounts each,
 * and generates a report of current account balances.
 */

import banking.domain.*;
import banking.reports.CustomerReport;

public class TestBanking {

  public static void main(String[] args) {
    Bank     bank = Bank.getBank();
    Customer customer;
    CustomerReport report = new CustomerReport();

    // Create several customers and their accounts
    bank.addCustomer("Jane", "Simms");
    customer = bank.getCustomer(0);
    customer.addAccount(new SavingsAccount(500.00, 0.05));
    customer.addAccount(new CheckingAccount(200.00, 400.00));

    bank.addCustomer("Owen", "Bryant");
    customer = bank.getCustomer(1);
    customer.addAccount(new CheckingAccount(200.00));

    bank.addCustomer("Tim", "Soley");
    customer = bank.getCustomer(2);
    customer.addAccount(new SavingsAccount(1500.00, 0.05));
    customer.addAccount(new CheckingAccount(200.00));

    bank.addCustomer("Maria", "Soley");
    customer = bank.getCustomer(3);
    // Maria and Tim have a shared checking account
    customer.addAccount(bank.getCustomer(2).getAccount(1));
    customer.addAccount(new SavingsAccount(150.00, 0.05));

    // Generate a report
    report.generateReport();
  }
}
PS:
Hangzhou bus arson.i just don't see the message。brother is angry.although i think nothing,the phone is power off.i think don't always have to accuse a things over and over again.if  he have any important thing, that you have been here say I can accept.that's nothing important thing,have also been in touch with me now,he don't have repeatedly said.Today,i find ,i have been very selfish,has always been.if I lost something precious things along the way is also asked for it.
0 0
原创粉丝点击