文件名称:存取Package,3个Class
文件大小:622B
文件格式:JAVA
更新时间:2023-11-29 11:54:17
存取 账户建立
package com.wommand.exer3; public class CustomerTest { public static void main(String[] args) { Customer cust = new Customer("jane","smith"); Account acct = new Account(1000,2000,0.0123); cust.setAccount(acct); cust.getAccount().deposit(100); cust.getAccount().withdraw(960); c