/
Dir_KeyT
/
Task_2
Обзор
Документация
Войти
/
Dir_KeyT
/
Task_2
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
service.java
15 строк
285 B
Dir_KeyT
Create: service.java
30 июл 2026, 21:09
Верифицирован
30 июл 2026, 21:09
6fe9e35
Код
Авторство
О чём код?
package ru.netology; public class service { public static int calculateCustoms(int price, int weight) { int priceDuty = price / 100; int weightDuty = weight * 100; int result = priceDuty + weightDuty; return result; } }