Advertisement
Spocoman

07. School Camp

Aug 26th, 2024
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.54 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class SchoolCamp {
  4.     public static void main(String[] args) {
  5.         Scanner scanner = new Scanner(System.in);
  6.         String season = scanner.nextLine();
  7.         String group = scanner.nextLine();
  8.         int people = Integer.parseInt(scanner.nextLine());
  9.         int nights = Integer.parseInt(scanner.nextLine());
  10.  
  11.         double price = 0;
  12.         String sport = "";
  13.  
  14.         if (season.equals("Winter")) {
  15.             switch (group) {
  16.                 case "boys":
  17.                     price = 9.60;
  18.                     sport = "Judo";
  19.                     break;
  20.                 case "girls":
  21.                     price = 9.60;
  22.                     sport ="Gymnastics";
  23.                     break;
  24.                 case "mixed":
  25.                     price = 10.00;
  26.                     sport = "Ski";
  27.                     break;
  28.             }
  29.         } else if (season.equals("Spring")) {
  30.             switch (group) {
  31.                 case "boys":
  32.                     price = 7.20;
  33.                     sport = "Tennis";
  34.                     break;
  35.                 case "girls":
  36.                     price = 7.20;
  37.                     sport = "Athletics";
  38.                     break;
  39.                 case "mixed":
  40.                     price = 9.50;
  41.                     sport = "Cycling";
  42.                     break;
  43.             }
  44.         } else {
  45.             switch (group) {
  46.                 case "boys":
  47.                     price = 15.00;
  48.                     sport = "Football";
  49.                     break;
  50.                 case "girls":
  51.                     price = 15.00;
  52.                     sport = "Volleyball";
  53.                     break;
  54.                 case "mixed":
  55.                     price = 20.00;
  56.                     sport = "Swimming";
  57.                     break;
  58.             }
  59.         }
  60.  
  61.         if (people >= 50) {
  62.             price *= 0.50;
  63.         } else if (people >= 20) {
  64.             price *= 0.85;
  65.         }  else if (people >= 10) {
  66.             price *= 0.95;
  67.         }
  68.  
  69.         double totalSum = price * people * nights;
  70.         System.out.printf(" %s %.2f lv.\n", sport, totalSum);
  71.     }
  72. }
  73.  
  74. ИЛИ:
  75.  
  76. import java.util.Scanner;
  77.  
  78. public class SchoolCamp {
  79.     public static void main(String[] args) {
  80.         Scanner scanner = new Scanner(System.in);
  81.         String season = scanner.nextLine();
  82.         String group = scanner.nextLine();
  83.         int people = Integer.parseInt(scanner.nextLine());
  84.         int nights = Integer.parseInt(scanner.nextLine());
  85.  
  86.         double price = 0;
  87.         String sport = "";
  88.  
  89.         if (season.equals("Winter")) {
  90.             price = group.equals("boys") ? 9.60 : group.equals("girls") ? 9.60 : 10.00;
  91.             sport = group.equals("boys") ? "Judo" : group.equals("girls") ? "Gymnastics" : "Ski";
  92.         } else if (season.equals("Spring")) {
  93.             price = group.equals("boys") ? 7.20 : group.equals("girls") ? 7.20 : 9.50;
  94.             sport = group.equals("boys") ? "Tennis" : group.equals("girls") ? "Athletics" : "Cycling";
  95.         } else {
  96.             price = group.equals("boys") ? 15.00 : group.equals("girls") ? 15.00 : 20.00;
  97.             sport = group.equals("boys") ? "Football" : group.equals("girls") ? "Volleyball" : "Swimming";
  98.         }
  99.  
  100.         price *=
  101.                 people >= 50 ? 0.50 :
  102.                         people >= 20 ? 0.85 :
  103.                                 people >= 10 ? 0.95 : 1;
  104.  
  105.         double totalSum = price * people * nights;
  106.         System.out.printf(" %s %.2f lv.\n", sport, totalSum);
  107.     }
  108. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement