Advertisement
Spocoman

Coffee Machine

Sep 3rd, 2024
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.46 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Main {
  4.     public static void main(String[] args) {
  5.         Scanner scanner = new Scanner(System.in);
  6.         String drink = scanner.nextLine(),
  7.                 sugar = scanner.nextLine();
  8.         int drinkCount = Integer.parseInt(scanner.nextLine());
  9.         double sum = drinkCount;
  10.  
  11.         if (drink.equals("Espresso")) {
  12.             if (sugar.equals("Without")) {
  13.                 sum *= 0.90 * 0.65;
  14.             } else if (sugar.equals("Normal")) {
  15.                 sum *= 1.00;
  16.             } else if (sugar.equals("Extra")) {
  17.                 sum *= 1.20;
  18.             }
  19.  
  20.             if (drinkCount > 5) {
  21.                 sum *= 0.75;
  22.             }
  23.         } else if (drink.equals("Cappuccino")) {
  24.             if (sugar.equals("Without")) {
  25.                 sum *= 0.65;
  26.             } else if (sugar.equals("Normal")) {
  27.                 sum *= 1.20;
  28.             } else if (sugar.equals("Extra")) {
  29.                 sum *= 1.60;
  30.             }
  31.         } else if (drink.equals("Tea")) {
  32.             if (sugar.equals("Without")) {
  33.                 sum *= 0.50 * 0.65;
  34.             } else if (sugar.equals("Normal")) {
  35.                 sum *= 0.60;
  36.             } else if (sugar.equals("Extra")) {
  37.                 sum *= 0.70;
  38.             }
  39.         }
  40.  
  41.         if (sum > 15) {
  42.             sum *= 0.80;
  43.         }
  44.  
  45.         System.out.printf("You bought %d cups of %s for %.2f lv.\n", drinkCount, drink, sum);
  46.     }
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement