用c#设计一个 Account账号类
答案:1 悬赏:20 手机版
解决时间 2021-03-27 12:28
- 提问者网友:不要迷恋哥
- 2021-03-27 04:52
用c#设计一个 Account账号类
最佳答案
- 五星知识达人网友:鸽屿
- 2021-03-27 05:31
public class Account
{
private string 账号ID;
private double 余额;
public Account(string 账号ID,double 余额)
{
this.余额 = 余额;
this.账号ID = 账号ID;
}
public void SaveMoney(double money)
{
this.余额 +=money;
}
public void GetMoney(double money)
{
if(this.余额 {
Console.WriteLine("账号余额不足!")
}
else
{
this.余额 -=money;
}
}
public void Show余额()
{
Console.WriteLine(string.Format("你的账号余额为:{0}“,this.余额.ToString())
}
}
{
private string 账号ID;
private double 余额;
public Account(string 账号ID,double 余额)
{
this.余额 = 余额;
this.账号ID = 账号ID;
}
public void SaveMoney(double money)
{
this.余额 +=money;
}
public void GetMoney(double money)
{
if(this.余额
Console.WriteLine("账号余额不足!")
}
else
{
this.余额 -=money;
}
}
public void Show余额()
{
Console.WriteLine(string.Format("你的账号余额为:{0}“,this.余额.ToString())
}
}
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯