day97(6.17)

来源:互联网 发布:杰洛特捏脸数据 编辑:程序博客网 时间:2024/05/16 05:30
在昨天的基础上再加这些部分的东西。
题目:
/*
 * This class creates the program to test the banking classes.
 * It creates a new Bank, sets the Customer (with an initial balance),
 * and performs a series of transactions with the Account object.
 */

import banking.*;

public class TestBanking {

  public static void main(String[] args) {
    Customer customer;
    Account  account;

    // Create an account that can has a 500.00 balance.
    System.out.println("Creating the customer Jane Smith.");
    //code
    System.out.println("Creating her account with a 500.00 balance.");
    //code
    System.out.println("Withdraw 150.00");
   
//code
    System.out.println("Deposit 22.50");
  //code
    System.out.println("Withdraw 47.62");
    //code
    // Print out the final account balance
    System.out.println("Customer [" + customer.getLastName()
      + ", " + customer.getFirstName()
      + "] has a balance of " + account.getBalance());
  }
}
0 0
原创粉丝点击