/
AleksejRo
/
2t.
Обзор
Документация
Войти
/
AleksejRo
/
2t.
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Main.java
18 строк
744 B
AleksejRo
upload files
02 июн 2025, 23:17
02 июн 2025, 23:17
2ba1d6c
Код
Авторство
О чём код?
//TIP To <b>Run</b> code, press <shortcut actionId="Run"/> or // click the <icon src="AllIcons.Actions.Execute"/> icon in the gutter. import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.print("Введите цену товара (в руб.):"); int price = scanner.nextInt(); System.out.print("Введите вес товара (в кг.):"); int weight = scanner.nextInt(); int result = calculateCustoms(price, weight); System.out.print("Ваша пошлина:" + result); } public static int calculateCustoms(int price, int weight) { return price/100 + weight*100; } }