/
weazweazweaz
/
hwPoly2
Обзор
Документация
Войти
/
weazweazweaz
/
hwPoly2
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Deal.java
23 строки
527 B
weazweazweaz
upload files
02 дек 2025, 00:26
02 дек 2025, 00:26
cffe336
Код
Авторство
О чём код?
public class Deal { private String comment; private int creditChange; private int debitChange; public Deal (String comment, int creditChange, int debitChange) { this.comment = comment; this.creditChange = creditChange; this.debitChange = debitChange; } public int getCreditChange() { return creditChange; } public int getDebitChange() { return debitChange; } public String getComment() { return comment; } }