/
1091950
/
HelloWorld
Обзор
Документация
Войти
/
1091950
/
HelloWorld
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Main.java
14 строк
574 B
1091950
upload files
22 окт 2025, 10:13
22 окт 2025, 10:13
966c176
Код
Авторство
О чём код?
//TIP To <b>Run</b> code, press <shortcut actionId="Run"/> or // click the <icon src="AllIcons.Actions.Execute"/> icon in the gutter. public class Main { public static void main(String[] args) { System.out.println("Alexeev Alexander"); int income = 44000; int spending = 30000; int balance = income - spending; System.out.println("Доход " + income + " рублей"); System.out.println("Расход " + spending + " рублей"); System.out.println("Остаток " + balance + " рублей"); } }