/
shuchkin
/
NETOLOGY-HW_HASH
Обзор
Документация
Войти
/
shuchkin
/
NETOLOGY-HW_HASH
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/Shipping.java
23 строки
503 B
Sergey Shuchkin
0.1
20 дек 2025, 14:00
20 дек 2025, 14:00
1a07012
Код
Авторство
О чём код?
public class Shipping { protected Address address; protected int cost; protected int weight; protected int total; public Shipping(Address address, int cost, int weight) { this.address = address; this.cost = cost; this.weight = weight; this.total = cost * weight; } public Address getAddress() { return address; } public int getWeight() { return weight; } public int getTotal() { return total; } }