⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 account.java

📁 bankconsole
💻 JAVA
字号:
package bankconsole;

public class Account {

	protected int totalMoney;

	public Account(int money) {
		this.totalMoney = money;
	}

	public int deposit(int in) {
		
		System.out.println("提示:存钱操作成功.");
		return this.totalMoney = totalMoney + in;
		
	}

	public int withdraw(int out) {

		if (out > totalMoney) {
			return -1;
		}
		return this.totalMoney = totalMoney - out;

	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -