Advertisement
elena1234

Orders*

Oct 28th, 2020 (edited)
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.44 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace Orders
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.  
  11.             var productPriceDictionary = new Dictionary<string, decimal>();
  12.             var productQuantityDictionary = new Dictionary<string, int>();
  13.             string input = Console.ReadLine();
  14.             while (input != "buy")
  15.             {
  16.                 string[] inputArray = input.Split();
  17.                 string product = inputArray[0];
  18.                 decimal price = decimal.Parse(inputArray[1]);
  19.                 int quantity = int.Parse(inputArray[2]);
  20.                 if (productPriceDictionary.ContainsKey(product) == false)
  21.                 {
  22.                     productPriceDictionary[product] = price;
  23.                     productQuantityDictionary[product] = quantity;
  24.                 }
  25.  
  26.                 else
  27.                 {
  28.                     productPriceDictionary[product] = price;
  29.                     productQuantityDictionary[product] += quantity;
  30.                 }
  31.  
  32.                 input = Console.ReadLine();
  33.             }
  34.  
  35.             foreach (var kvp1 in productPriceDictionary)
  36.             {
  37.                string product = kvp1.Key;
  38.                decimal price = kvp1.Value;
  39.                int quantity =productQuantityDictionary[product];
  40.                Console.WriteLine($"{product} -> {price*quantity:F2}");
  41.             }
  42.           }
  43.  
  44.         }
  45.     }
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement