testbanking.java
来自「java(sl275课程习题解module1-module3共7道习题的题目以及」· Java 代码 · 共 28 行
JAVA
28 行
/*
* 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;
customer = new Customer("Jane", "Smith");
customer.setAccount(new Account(500.00));
account = customer.getAccount();
account.withdraw(150.00);
account.deposit(22.50);
account.withdraw(47.62);
System.out.println("Customer [" + customer.getLastName()
+ ", " + customer.getFirstName()
+ "] has a balance of " + account.getBalance());
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?