/
msigin77
/
Home_work2
Обзор
Документация
Войти
/
msigin77
/
Home_work2
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Main.java
26 строк
957 B
msigin77
Д\з№2
28 окт 2025, 10:56
28 окт 2025, 10:56
4edb885
Код
Авторство
О чём код?
//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) { //TIP Press <shortcut actionId="ShowIntentionActions"/> with your caret at the highlighted text // to see how GIGA IDE suggests fixing it. Scanner scanner = new Scanner(System.in); System.out.print("Введите цену товара (в рублях):"); int price = scanner.nextInt(); System.out.print("Введите вес товара (в кг.):"); int weight = scanner.nextInt(); double tax = calculateCustoms(price, weight); System.out.println("Размер пошлины (в руб.) составит:"+tax); } public static double calculateCustoms(int price, int w) { double tax= price*0.01+w*100; return tax; } }