/
evteev777
/
CoffeMachine
Обзор
Документация
Войти
/
evteev777
/
CoffeMachine
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/com/company/Main.java
41 строка
1 KB
Aleksandr Evteev
Initial commit
28 июл 2019, 23:34
28 июл 2019, 23:34
f961620
Код
Авторство
О чём код?
package com.company; public class Main { public static void main(String[] args) { // write your code here int moneyAmount = 10; int capuccinoPrice = 180; int lattePrice = 120; int espressoPrice = 80; int pureWaterPrise = 20; var canBuyAnything = false; var isMilkEnough = true; if(moneyAmount >= capuccinoPrice && isMilkEnough) { System.out.println("Вы можете купить капуччино"); canBuyAnything = true; } if(moneyAmount >= lattePrice && isMilkEnough) { System.out.println("Вы можете купить латте"); canBuyAnything = true; } if(moneyAmount >= espressoPrice) { System.out.println("Вы можете купить еспрессо"); canBuyAnything = true; } if(moneyAmount >= pureWaterPrise) { System.out.println("Вы можете купить воду"); canBuyAnything = true; } if(canBuyAnything == false) { System.out.println("Недостаточно денег"); } } }