/
Pavel23
/
HW11
Обзор
Документация
Войти
/
Pavel23
/
HW11
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
CreditAccount.java
23 строки
534 B
Pavel23
upload files
06 ноя 2025, 16:22
06 ноя 2025, 16:22
d0df674
Код
Авторство
О чём код?
public class CreditAccount extends Account{ private long limit; public CreditAccount(long limit) { this.limit = limit; } @Override public boolean add(long amount) { if (balance + amount <= 0) { balance += amount; return true; } else return false; } @Override public boolean pay(long amount) { if (balance - amount >= -limit) { balance -= amount; return true; } else return false; } }