/
algapono
/
hw4
Обзор
Документация
Войти
/
algapono
/
hw4
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
IncomeOutcome.java
13 строк
368 B
algapono
hw4
30 мар 2025, 17:50
30 мар 2025, 17:50
6f56c25
Код
Авторство
О чём код?
package ru.netology.incomeOutcome; public class IncomeOutcome { public static int CalculateInOutcomeTax(int earnings, int spendings) { double tax = (earnings - spendings) * 0.15; int taxInOutcome = (int) tax; if (taxInOutcome >= 0) { return (taxInOutcome); } else { return 0; } } }