使用委托实现信用卡用户定时还款功能
using System;
namespace text
{
//储蓄卡
class GetPayout
{
private int Payout;
public GetPayout(int Payout)
{
this.Payout=Payout;
}
//获取金额
public int NeedMoney()
{
return this.Payout;
}
//剩余的金额
public void LeftMoney(int NowMoney)
{
this.Payout = NowMoney;
}
}
//信用卡
class CreditPayin
{
共有 0 条评论