Advertisement
Spocoman

Travel Agency

Sep 10th, 2024
335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.61 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 town = scanner.nextLine(),
  7.                 pack = scanner.nextLine(),
  8.                 vip = scanner.nextLine();
  9.         int days = Integer.parseInt(scanner.nextLine());
  10.         if (days > 7) {
  11.             days--;
  12.         }
  13.  
  14.         double dayPrice = 0;
  15.  
  16.         if (town.equals("Bansko") || town.equals("Borovets")) {
  17.             if (pack.equals("withEquipment")) {
  18.                 dayPrice = 100;
  19.                 if (vip.equals("yes")) {
  20.                     dayPrice *= 0.90;
  21.                 }
  22.             } else if (pack.equals("noEquipment")) {
  23.                 dayPrice = 80;
  24.                 if (vip.equals("yes")) {
  25.                     dayPrice *= 0.95;
  26.                 }
  27.             }
  28.         } else if (town.equals("Varna") || town.equals("Burgas")) {
  29.             if (pack.equals("withBreakfast")) {
  30.                 dayPrice = 130;
  31.                 if (vip.equals("yes")) {
  32.                     dayPrice *= 0.88;
  33.                 }
  34.             } else if (pack.equals("noBreakfast")) {
  35.                 dayPrice = 100;
  36.                 if (vip.equals("yes")) {
  37.                     dayPrice *= 0.93;
  38.                 }
  39.             }
  40.         }
  41.  
  42.         if (days < 1) {
  43.             System.out.println("Days must be positive number!");
  44.         } else if (dayPrice > 0) {
  45.             System.out.printf("The price is %.2flv! Have a nice time!", dayPrice * days);
  46.         } else {
  47.             System.out.println("Invalid input!");
  48.         }
  49.     }
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement