python定义一个类savingaccount表示银行账户_创建一个SavingAccount类

/*5.创建一个SavingAccount类。使用一个static数据成员

annualInterestRate保存每个存款者的年利率。类的每个

对象都包含一个private数据成员savingsBalance,用以指

示存款者目前的存款金额。该类提供成员函数calculateMonthlyInterest,

它将余额乘以annualInterestRate再除以12来计算月利息,这个利息应该

加到savingsBalance中。该类还提供一个static成员函数

ModifyInterestRate,它将static的annualInterestRate设置

为一个新值。编写一个驱动程序测试该类,实例化SavingAccount类

的两个对象save1和save2,余额分别是20000元和30000元,将

annualInterestRate设置为3%,然后计算月利率并打印每个存款者

的新余额。接着再将annualInterestRate设置为4%,计算下一个月的

利息并打印每个存款者的新余额。

*/

#include&ltiostream&gt

using namespace std;

class SavingAccount{

private:

static double annualInterestRate;

double savingsBalance;

public:

SavingAccount(double a);

static void ModifyInterestRate(double b);

double calculateMonthlyInterest();

void show();

};

SavingAccount::SavingAccount(double a)

{

savingsBalance=a;

}

void SavingAccount::ModifyInterestRate(double b)

{

annualInterestRate=b;

}

double SavingAccount::calculateMonthlyInterest()

{

double t;

t=savingsBalance*annualInterestRate;

t=t/12;

savingsBalance=savingsBalance+t;

return savingsBalance;

}

void SavingAccount::show()

{

cout&lt&lt"存款者的新余额为:"&lt&ltendl;

cout&lt&ltsavingsBalance&lt&ltendl;

}

double SavingAccount::annualInterestRate=0.0;

int main()

{

SavingAccount save1(20000);

save1.ModifyInterestRate(0.03);

save1.calculateMonthlyInterest();

save1.show();

SavingAccount save2(30000);

save2.ModifyInterestRate(0.03);

save2.calculateMonthlyInterest();

save2.show();

SavingAccount save3(20000);

save3.ModifyInterestRate(0.04);

save3.calculateMonthlyInterest();

save3.show();

SavingAccount save4(30000);

save4.ModifyInterestRate(0.04);

save4.calculateMonthlyInterest();

save4.show();

return 0;

}

  • 4
    点赞
  • 18
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值