Untitled
Anonymous
java
01/02/2024 6:32 PM
572 B
26
Indexable
public class User {
private int moneyOfUser;
public User(int moneyOfUser) {
this.moneyOfUser = moneyOfUser;
}
public int getAmountOfMoney() {
return this.moneyOfUser;
}
public void pay(int price){
if (price <= moneyOfUser){
moneyOfUser -= price;
} else {
System.out.println(" you can not buy this item! ");
}
}
}
Editor is loading...
Leave a Comment