Advertisement
SvetlozarDragnev

Untitled

Jan 11th, 2025
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.95 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Vacation {
  4.     public static void main(String[] args) {
  5.  
  6.         Scanner scanner = new Scanner(System.in);
  7.  
  8.         int people = Integer.parseInt(scanner.nextLine());
  9.         String type = scanner.nextLine();
  10.         String day = scanner.nextLine();
  11.  
  12.         if (type.equals("Students")) {
  13.             if (day.equals("Friday")) {
  14.                 double price = people * 8.45;
  15.                 if (people >= 30) {
  16.                     double totalPrice = price - (0.15 * price);
  17.                     System.out.printf("Total price: %.2f", totalPrice);
  18.                 } else {
  19.                     System.out.printf("Total price: %.2f", price);
  20.                 }
  21.             } else if (day.equals("Saturday")) {
  22.                 double price = people * 9.89;
  23.                 if (people >= 30) {
  24.                     double totalPrice = price - (0.15 * price);
  25.                     System.out.printf("Total price: %.2f", totalPrice);
  26.                 } else {
  27.                     System.out.printf("Total price: %.2f", price);
  28.                 }
  29.             } else if (day.equals("Sunday")) {
  30.                 double price = people * 10.46;
  31.                 if (people >= 30) {
  32.                     double totalPrice = price - (0.15 * price);
  33.                     System.out.printf("Total price: %.2f", totalPrice);
  34.                 } else {
  35.                     System.out.printf("Total price: %.2f", price);
  36.                 }
  37.             }
  38.         }
  39.  
  40.         //BUSINES
  41.         else if (type.equals("Business")) {
  42.             if (day.equals("Friday")) {
  43.                 double price = people * 10.90;
  44.                 if (people >= 100) {
  45.                     double totalPrice = price - (10 * 10.90);
  46.                     System.out.printf("Total price: %.2f", totalPrice);
  47.                 } else {
  48.                     System.out.printf("Total price: %.2f", price);
  49.                 }
  50.             } else if (day.equals("Saturday")) {
  51.                 double price = people * 15.60;
  52.                 if (people >= 100) {
  53.                     double totalPrice = price - (10 * 15.60);
  54.                     System.out.printf("Total price: %.2f", totalPrice);
  55.                 } else {
  56.                     System.out.printf("Total price: %.2f", price);
  57.                 }
  58.             } else if (day.equals("Sunday")) {
  59.                 double price = people * 10.46;
  60.                 if (people >= 100) {
  61.                     double totalPrice = price - (10 * 10.46);
  62.                     System.out.printf("Total price: %.2f", totalPrice);
  63.                 } else {
  64.                     System.out.printf("Total price: %.2f", price);
  65.                 }
  66.             }
  67.         }
  68.  
  69.         //REGULAR
  70.         else if (type.equals("Regular")) {
  71.             if (day.equals("Friday")) {
  72.                 double price = people * 15;
  73.                 if (people >= 10 && people <= 20) {
  74.                     double totalPrice = price - (0.05 * price);
  75.                     System.out.printf("Total price: %.2f", totalPrice);
  76.                 } else {
  77.                     System.out.printf("Total price: %.2f", price);
  78.                 }
  79.             } else if (day.equals("Saturday")) {
  80.                 double price = people * 20;
  81.                 if (people >= 10 && people <= 20) {
  82.                     double totalPrice = price - (0.05 * price);
  83.                     System.out.printf("Total price: %.2f", totalPrice);
  84.                 } else {
  85.                     System.out.printf("Total price: %.2f", price);
  86.                 }
  87.             } else if (day.equals("Sunday")) {
  88.                 double price = people * 22.5;
  89.                 if (people >= 10 && people <= 20) {
  90.                     double totalPrice = price - (0.05 * price);
  91.                     System.out.printf("Total price: %.2f", totalPrice);
  92.                 } else {
  93.                     System.out.printf("Total price: %.2f", price);
  94.                 }
  95.             }
  96.  
  97.  
  98.         }
  99.     }
  100. }
  101.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement