Advertisement
Spocoman

Tournament of Christmas

Sep 10th, 2024
357
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.79 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.                 winTotal = 0, loseTotal = 0;
  8.         double totalSum = 0;
  9.         String command;
  10.  
  11.         for (int i = 0; i < days; i++) {
  12.             int win = 0, lose = 0;
  13.             double sum = 0;
  14.  
  15.             while (true) {
  16.                 command = scanner.nextLine();
  17.                 if (command.equals("Finish")) {
  18.                     if (win > lose) {
  19.                         totalSum += sum * 1.1;
  20.                         winTotal += win;
  21.                     } else {
  22.                         totalSum += sum;
  23.                         loseTotal += lose;
  24.                     }
  25.                     break;
  26.                 }
  27.  
  28.                 if (command.equals("win")) {
  29.                     sum += 20;
  30.                     win++;
  31.                 } else if (command.equals("lose")) {
  32.                     lose++;
  33.                 }
  34.             }
  35.         }
  36.  
  37.         if (winTotal > loseTotal) {
  38.             System.out.printf("You won the tournament! Total raised money: %.2f\n", totalSum * 1.2);
  39.         } else {
  40.             System.out.printf("You lost the tournament! Total raised money: %.2f\n", totalSum);
  41.         }
  42.     }
  43. }
  44.  
  45. ИЛИ:
  46.  
  47. import java.util.Scanner;
  48.  
  49. public class Main {
  50.     public static void main(String[] args) {
  51.         Scanner scanner = new Scanner(System.in);
  52.         int days = Integer.parseInt(scanner.nextLine()),
  53.                 winTotal = 0, loseTotal = 0;
  54.         double totalSum = 0;
  55.         String command;
  56.  
  57.         for (int i = 0; i < days; i++) {
  58.             int win = 0, lose = 0;
  59.             double sum = 0;
  60.  
  61.             label:
  62.             while (true) {
  63.                 command = scanner.nextLine();
  64.                 switch (command) {
  65.                     case "Finish":
  66.                         if (win > lose) {
  67.                             totalSum += sum * 1.1;
  68.                             winTotal += win;
  69.                         } else {
  70.                             totalSum += sum;
  71.                             loseTotal += lose;
  72.                         }
  73.                         break label;
  74.                     case "win":
  75.                         sum += 20;
  76.                         win++;
  77.                         break;
  78.                     case "lose":
  79.                         lose++;
  80.                         break;
  81.                 }
  82.  
  83.             }
  84.         }
  85.  
  86.         if (winTotal > loseTotal) {
  87.             System.out.printf("You won the tournament! Total raised money: %.2f\n", totalSum * 1.2);
  88.         } else {
  89.             System.out.printf("You lost the tournament! Total raised money: %.2f\n", totalSum);
  90.         }
  91.     }
  92. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement