Advertisement
Spocoman

03. Gaming Store

Jan 15th, 2022
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 4.02 KB | None | 0 0
  1. using System;
  2.  
  3. namespace GamingStore
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             double budget = double.Parse(Console.ReadLine());
  10.             string command = Console.ReadLine();
  11.             double spent = 0;
  12.  
  13.             while (true)
  14.             {
  15.                 bool isFound = true;
  16.                 double price = 0;
  17.  
  18.                 if (budget == 0)
  19.                 {
  20.                     Console.WriteLine("Out of money!");
  21.                     break;
  22.                 }
  23.                 else if (command == "Game Time")
  24.                 {
  25.                     Console.WriteLine($"Total spent: ${spent:F2}. Remaining: ${budget:F2}");
  26.                     break;
  27.                 }
  28.                 else
  29.                 {
  30.                     switch (command)
  31.                     {
  32.                         case "OutFall 4":
  33.                             price = 39.99;
  34.                             break;
  35.  
  36.                         case "CS: OG":
  37.                             price = 15.99;
  38.                             break;
  39.  
  40.                         case "Zplinter Zell":
  41.                             price = 19.99;
  42.                             break;
  43.  
  44.                         case "Honored 2":
  45.                             price = 59.99;
  46.                             break;
  47.  
  48.                         case "RoverWatch":
  49.                             price = 29.99;
  50.                             break;
  51.  
  52.                         case "RoverWatch Origins Edition":
  53.                             price = 39.99;
  54.                             break;
  55.                         default:
  56.                             Console.WriteLine("Not Found");
  57.                             isFound = false;
  58.                             break;
  59.                     }
  60.  
  61.                     if (isFound)
  62.                     {
  63.                         if (budget >= price)
  64.                         {
  65.                             Console.WriteLine($"Bought {command}");
  66.                             budget -= price;
  67.                             spent += price;
  68.                         }
  69.                         else
  70.                         {
  71.                             Console.WriteLine("Too Expensive");
  72.                         }
  73.                     }
  74.                     command = Console.ReadLine();
  75.                 }
  76.             }
  77.         }
  78.     }
  79. }
  80.  
  81.  
  82. Решение с речник:
  83.  
  84.  
  85. using System;
  86. using System.Collections.Generic;
  87. using System.Linq;
  88.  
  89. namespace GamingStore
  90. {
  91.     class Program
  92.     {
  93.         static void Main(string[] args)
  94.         {
  95.             double balance = double.Parse(Console.ReadLine());
  96.  
  97.             Dictionary<string, double> games = new Dictionary<string, double>{
  98.                 { "OutFall 4", 39.99},
  99.                 { "CS: OG", 15.99},
  100.                 { "Zplinter Zell", 19.99 },
  101.                 { "Honored 2", 59.99 },
  102.                 { "RoverWatch", 29.99 },
  103.                 { "RoverWatch Origins Edition", 39.99 }
  104.             };
  105.  
  106.             string command = Console.ReadLine();
  107.             double sum = 0;
  108.  
  109.             while (command != "Game Time" && balance != sum)
  110.             {
  111.                 if (games.ContainsKey(command))
  112.                 {
  113.                     if (games[command] <= (balance - sum))
  114.                     {
  115.                         sum += games[command];
  116.                         Console.WriteLine($"Bought {command}");
  117.                     }
  118.                     else
  119.                     {
  120.                         Console.WriteLine("Too Expensive");
  121.                     }
  122.                 }
  123.                 else
  124.                 {
  125.                     Console.WriteLine("Not Found");
  126.                 }
  127.                 command = Console.ReadLine();
  128.             }
  129.             if (balance == sum)
  130.             {
  131.                 Console.WriteLine("Out of money!");
  132.             }
  133.             else
  134.             {
  135.                 Console.WriteLine($"Total spent: ${sum:F2}. Remaining: ${balance - sum:F2}");
  136.             }
  137.         }
  138.     }
  139. }
  140.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement