/
conann
/
test2.2
Обзор
Документация
Войти
/
conann
/
test2.2
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CreditAccount.java
28 строк
576 B
Kirill Opra
upload files
20 мар 2025, 11:59
20 мар 2025, 11:59
e5adf29
Код
Авторство
О чём код?
package accountsSystem; public class CreditAccount extends Account { private final int limit; public CreditAccount (int limit) { this.limit = limit; } @Override public boolean add(long amount) { if (balance + amount <= 0) { balance += amount; return true; } return false; } @Override public boolean pay(long amount) { if (balance - amount >= limit) { balance -= amount; return true; } return false; } }