编写程序,模拟银行存取款业务。 (1)建银行账户类bank,有成员:储户现有款项account(int型)和
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编写程序,模拟银行存取款业务。 (1)建银行账户类bank,有成员:储户现有款项account(int型)和相关的知识,希望对你有一定的参考价值。
编写程序,模拟银行存取款业务。
(1)建银行账户类bank,有成员:储户现有款项account(int型)和透支额度credit(int型)
(2)方法:
1.两个构造方法,分别为无参和两个参数。
2.每个属性的get和set方法。
3.存款的方法income:带有一个参数,用来表示存入的钱数(int型),无返回值。
4.取款的方法takeout:带有一个参数,用来表示取出的钱数(int型),无返回值。
5.显示余额的方法show:无参数,无返回值。
(3) 建立主方法,创建对象,设置其现有款项及透支额度,进行存取款操作,显示余额。
private int account;
private int credit;
public int getAccount()
return account;
public void setAccount(int account)
this.account = account;
public int getCredit()
return credit;
public void setCredit(int credit)
this.credit = credit;
public Bank(int account, int credit)
super();
this.account = account;
this.credit = credit;
public Bank()
public void income(int in)
account=account+in;
System.out.println("存款成功");
public void takeout(int out)
if(out>credit+account)
System.out.println("余额不足");
else
System.out.println("取款成功");
account-=out;
public void show()
System.out.println("余额"+account);
public static void main(String[] args)
Bank bank=new Bank(1200, 2400);
bank.income(10000);
bank.show();
bank.takeout(100);
bank.show();
以上是关于编写程序,模拟银行存取款业务。 (1)建银行账户类bank,有成员:储户现有款项account(int型)和的主要内容,如果未能解决你的问题,请参考以下文章
JAVA编写模拟ATM机进行帐户余额查询 实现存款和取款业务(使用带参数的方法)
编写一个类似银行账户的程序,属性:账号 储户姓名 地址 存款余额 利率。方法:存款 取款查询余额计算利息
编写Java应用程序。首先定义一个描述银行账户的Account类,包括成员变 量“账号”和“存款余额”,成员方法有“存款”“取款”和“余额查询”。其次, 编写一个主类,在主类中测试Account类的
编写Java应用程序。首先定义一个描述银行账户的Account类,包括成员变 量“账号”和“存款余额”,成员方法有“存款”“取款”和“余额查询”。其次, 编写一个主类,在主类中测试Account类的(
首先定义一个描述银行账户的Account类,包括成员变 量“账号”和“存款余额”,成员方法有“存款”“取款”和“余额查询”。其次, 编写一个主类,在主类中测试Account类的功能。