1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
public class priseTernar { public static void main(String[] args) { double quantity = 4; //Количество товара double price = 100; //Цена за единицу товара double discount = 0.75; //Скидка 25% double itog; String pozd; itog = quantity >= 10 ? quantity*price*discount : quantity*price; System.out.println("Стоимость товара составляет: "+itog); pozd = quantity >= 10 ? quantity <= 10 ? "Менее 10-ти товаров" : "Более 10-ти товаров" : (quantity < 5) ? "Менее 5-ти товаров" : "От 5-ти до 10-ти"; System.out.println(pozd); } } |
| Категория: Java