Advertisement
CR7CR7

10

Oct 11th, 2022
970
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.74 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class TreasureHunt {
  4.     public static void main(String[] args) {
  5.         Scanner scanner = new Scanner(System.in);
  6.  
  7.         String[] treasureChest = scanner.nextLine().split("\\|");
  8.  
  9.         String command = scanner.nextLine();
  10.  
  11.         while (!command.equals("Yohoho!")) {
  12.             String[] commandParts = command.split(" ");
  13.  
  14.             switch (commandParts[0]) {
  15.                 case "Loot":
  16.                     for (int i = 1; i < commandParts.length; i++) {
  17.                         boolean alreadyContained = false;
  18.                         for (int j = 0; j < treasureChest.length; j++) {
  19.                             if (commandParts[i].equals(treasureChest[j])) {
  20.                                 alreadyContained = true;
  21.                                 break;
  22.                             }
  23.                         }
  24.                         if (!alreadyContained) {
  25.                             String newChest = commandParts[i] + " " + String.join(" ", treasureChest);
  26.                             treasureChest = newChest.split(" ");
  27.                         }
  28.                     }
  29.                     break;
  30.                 case "Drop":
  31.                     int position = Integer.parseInt(commandParts[1]);
  32.  
  33.                     if (position <= treasureChest.length - 1 && position >= 0) {
  34.                         String dropItem = treasureChest[position];
  35.                         for (int i = position; i < treasureChest.length - 1; i++) {
  36.                             treasureChest[i] = treasureChest[i + 1];
  37.                         }
  38.                         treasureChest[treasureChest.length - 1] = dropItem;
  39.  
  40.                     } else {
  41.                         break;
  42.                     }
  43.                     break;
  44.                 case "Steal":
  45.                     int numberOfStealingItems = Integer.parseInt(commandParts[1]);
  46.  
  47.                     if (numberOfStealingItems >= 0 && numberOfStealingItems < treasureChest.length) {
  48.                         for (int i = 0; i < numberOfStealingItems; i++) {
  49.                             System.out.print(treasureChest[treasureChest.length - numberOfStealingItems + i]);
  50.                             if (i != numberOfStealingItems - 1) {
  51.                                 System.out.print(", ");
  52.                             }
  53.                         }
  54.                         String[] tempChest = new String[treasureChest.length - numberOfStealingItems];
  55.                         for (int i = 0; i < tempChest.length; i++) {
  56.                             tempChest[i] = treasureChest[i];
  57.                         }
  58.                         treasureChest = tempChest;
  59.  
  60.                     } else if (numberOfStealingItems >= 0) {
  61.                         for (int i = 0; i < treasureChest.length; i++) {
  62.                             System.out.print(treasureChest[i]);
  63.                             if (i != treasureChest.length - 1) {
  64.                                 System.out.print(", ");
  65.                             }
  66.                         }
  67.                         treasureChest = new String[0];
  68.                     }
  69.                     System.out.println();
  70.                     break;
  71.  
  72.             }
  73.  
  74.  
  75.             command = scanner.nextLine();
  76.         }
  77.  
  78.         String treasureCount = String.join("", treasureChest);
  79.         int charCounter = 0;
  80.         for (int i = 0; i < treasureCount.length(); i++) {
  81.             charCounter++;
  82.         }
  83.         double averageTreasure = (1.0 * charCounter) / treasureChest.length;
  84.         if (charCounter > 0) {
  85.             System.out.printf("Average treasure gain: %.2f pirate credits.", averageTreasure);
  86.         } else {
  87.             System.out.println("Failed treasure hunt.");
  88.         }
  89.     }
  90. }
  91.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement