1
、写一个名为
Account
的类模拟账户。该类的属性和方法如下图所示。该类包括的属性:
账号
id
,余额
balance
,年利率
annualInterestRate
;包含的方法:访问器方法(
getter
和
setter
方法),返回月利率的方法
getMonthlyInterest()
,取款方法
withdraw()
,存款方法
deposit()
。
写一个用户程序测试
Account
类。在用户程序中,创建一个账号为
1122
、余额为
20000
、
年利率
4.5%
的
Account
对象。使用
withdraw
方法提款
30000
元,并打印余额。
再使用
withdraw
方法提款
2500
元,使用