Advertisement
Spocoman

Santas Holiday

Sep 9th, 2024
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.16 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.         int days = Integer.parseInt(scanner.nextLine()),
  7.                 nights = days - 1;
  8.         String type = scanner.nextLine(),
  9.                 rating = scanner.nextLine();
  10.         double price = 0;
  11.  
  12.         if (nights > 0) {
  13.             if (type.equals("room for one person")) {
  14.                 price = 18.00;
  15.             } else if (type.equals("apartment")) {
  16.                 price = 25.00;
  17.  
  18.                 if (nights < 10) {
  19.                     price *= 0.70;
  20.                 } else if (nights > 15) {
  21.                     price *= 0.50;
  22.                 } else {
  23.                     price *= 0.65;
  24.                 }
  25.             } else {
  26.                 price = 35.00;
  27.  
  28.                 if (nights < 10) {
  29.                     price *= 0.90;
  30.                 } else if (nights > 15) {
  31.                     price *= 0.80;
  32.                 } else {
  33.                     price *= 0.85;
  34.                 }
  35.             }
  36.  
  37.             if (rating.equals("positive")) {
  38.                 price *= 1.25;
  39.             } else {
  40.                 price *= 0.90;
  41.             }
  42.         }
  43.  
  44.         System.out.printf("%.2f\n", price * nights);
  45.     }
  46. }
  47.  
  48. Решение с тернарен оператор:
  49.  
  50. import java.util.Scanner;
  51.  
  52. public class Main {
  53.     public static void main(String[] args) {
  54.         Scanner scanner = new Scanner(System.in);
  55.         int days = Integer.parseInt(scanner.nextLine()),
  56.                 nights = days - 1;
  57.         String type = scanner.nextLine(),
  58.                 rating = scanner.nextLine();
  59.  
  60.         double price =
  61.                 nights > 0 ?
  62.                         ((type.equals("room for one person") ? 18.00
  63.                         : type.equals("apartment") ? 25.00 * (nights < 10 ? 0.70 : nights > 15 ? 0.50 : 0.65)
  64.                         : 35.00
  65.                         * (nights < 10 ? 0.90 : nights > 15 ? 0.80 : 0.85))
  66.                         * (rating.equals("positive") ? 1.25 : 0.90))
  67.                 : 0;
  68.  
  69.         System.out.printf("%.2f\n", price * nights);
  70.     }
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement