Advertisement
Spocoman

PC Game Shop

Nov 25th, 2021 (edited)
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.11 KB | None | 0 0
  1. using System;
  2.  
  3. namespace PCGameShop
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int volume = int.Parse(Console.ReadLine());  
  10.             double hearthstones = 0,
  11.                     fornites = 0,
  12.                     overwatches = 0,
  13.                     others = 0;
  14.  
  15.             for (int i = 0; i < volume; i++)
  16.             {
  17.                 string game = Console.ReadLine();
  18.                 switch (game)
  19.                 {
  20.                     case "Hearthstone":
  21.                         hearthstones++;
  22.                         break;
  23.                     case "Fornite":
  24.                         fornites++;
  25.                         break;
  26.                     case "Overwatch":
  27.                         overwatches++;
  28.                         break;
  29.                     default:
  30.                         others++;
  31.                         break;
  32.                 }
  33.             }
  34.  
  35.             Console.WriteLine($"Hearthstone - { hearthstones / volume * 100:F2}%");
  36.             Console.WriteLine($"Fornite - { fornites / volume * 100:F2}%");
  37.             Console.WriteLine($"Overwatch - { overwatches / volume * 100:F2}%");
  38.             Console.WriteLine($"Others - { others / volume * 100:F2}%");
  39.         }
  40.     }
  41. }
  42.  
  43. РЕШЕНИЕ С РЕЧНИК, ТЕРНАРЕН ОПЕРАТОР И FOREACH:
  44.  
  45. using System;
  46. using System.Collections.Generic;
  47.  
  48. namespace PCGameShop
  49. {
  50.     class Program
  51.     {
  52.         static void Main(string[] args)
  53.         {
  54.             Dictionary<string, double> games = new Dictionary<string, double>() {
  55.                 { "Hearthstone", 0 }, { "Fornite", 0 }, { "Overwatch", 0 }, { "Others", 0 }
  56.             };
  57.             int volume = int.Parse(Console.ReadLine());
  58.  
  59.             for (int i = 0; i < volume; i++)
  60.             {
  61.                 string game = Console.ReadLine();
  62.                 games[games.ContainsKey(game) ? game : "Others"]++;
  63.             }
  64.            
  65.             foreach (var game in games)
  66.             {
  67.                 Console.WriteLine($"{game.Key} - { game.Value / volume * 100:F2}%");
  68.             }
  69.         }
  70.     }
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement