Advertisement
Spocoman

03. Gaming Store

Oct 16th, 2024
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.51 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. class Main {
  4.     public static void main(String[] args) {
  5.         Scanner scanner = new Scanner(System.in);
  6.         double budget = Double.parseDouble(scanner.nextLine()),
  7.                 spent = 0;
  8.         String command;
  9.  
  10.         while (true) {
  11.             command = scanner.nextLine();
  12.             double price = 0;
  13.  
  14.             if (budget == 0) {
  15.                 System.out.println("Out of money!");
  16.                 break;
  17.             } else if (command.equals("Game Time")) {
  18.                 System.out.printf("Total spent: $%.2f. Remaining: $%.2f\n", spent, budget);
  19.                 break;
  20.             } else {
  21.                 price = switch (command) {
  22.                     case "OutFall 4" -> 39.99;
  23.                     case "CS: OG" -> 15.99;
  24.                     case "Zplinter Zell" -> 19.99;
  25.                     case "Honored 2" -> 59.99;
  26.                     case "RoverWatch" -> 29.99;
  27.                     case "RoverWatch Origins Edition" -> 39.99;
  28.                     default -> 0;
  29.                 };
  30.  
  31.                 if (price == 0) {
  32.                     System.out.println("Not Found");
  33.                 } else {
  34.                     if (budget >= price) {
  35.                         System.out.println("Bought " + command);
  36.                         budget -= price;
  37.                         spent += price;
  38.                     } else {
  39.                         System.out.println("Too Expensive");
  40.                     }
  41.                 }
  42.             }
  43.         }
  44.     }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement