📄 spend.java
字号:
class Spend extends FMoney implements Show{
float study;
float happy;
float traffic;
float live;
float other;
public void spendMoney(float m){
money=money-m;
}
public void display( ){
System.out.println("this account's name is :"+account+"\n"+
"study:"+study+"\n"+
"happy:"+happy+"\n"+
"traffic:"+traffic+"\n"+
"live:"+live+"\n"+
"other:"+other+"\n"+
"this account's left money is:"+money);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -