/
Letta21
/
HWAbstrInheritance
Обзор
Документация
Войти
/
Letta21
/
HWAbstrInheritance
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
MainAccount.java
14 строк
430 B
Letta21
Homework3
01 окт 2025, 18:09
01 окт 2025, 18:09
927013d
Код
Авторство
О чём код?
public class MainAccount { public static void main(String[] args) { CreditAccount crAccount = new CreditAccount(); crAccount.add(500); crAccount.pay(200); SimpleAccount simAccount = new SimpleAccount(); simAccount.add(200); simAccount.pay(100); crAccount.transfer(simAccount, 500); crAccount.getBalance(); simAccount.getBalance(); } }