Advertisement
Suslick

Untitled

Jan 28th, 2024 (edited)
638
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.61 KB | None | 0 0
  1.     class Program
  2.     {
  3.         static void Main(string[] args)
  4.         {
  5.             string userInput;
  6.             bool isWorking = true;
  7.             string wordToExit = "выход";
  8.  
  9.             Dictionary<string, decimal> currencies = new Dictionary<string, decimal>();
  10.  
  11.             currencies.Add("USD", 89.52m);
  12.             currencies.Add("EUR", 97.09m);
  13.             currencies.Add("CHY", 12.44m);
  14.             currencies.Add("TRY", 2.96m);
  15.             currencies.Add("INR", 1.08m);
  16.  
  17.             Print(currencies);
  18.  
  19.             while(isWorking)
  20.             {
  21.                 Console.WriteLine($"Введите значение указанные выше. Для выхода из программы напишите \'{wordToExit}\'");
  22.                 userInput = Console.ReadLine();
  23.  
  24.                 if(userInput.ToLower() == wordToExit)
  25.                 {
  26.                     isWorking = false;
  27.                 }
  28.                 else if(currencies.ContainsKey(userInput))
  29.                 {
  30.                     Console.WriteLine($"{userInput} - {currencies[userInput]}");
  31.                 }
  32.                 else
  33.                 {
  34.                     Console.WriteLine($"{userInput} нет в списке");
  35.                 }
  36.             }
  37.  
  38.             Console.ReadKey();
  39.         }
  40.  
  41.         private static void Print(Dictionary<string,decimal> currencies)
  42.         {
  43.             Console.WriteLine("Значения:");
  44.  
  45.             foreach (var item in currencies)
  46.             {
  47.                 Console.WriteLine($"\n- {item.Key}");
  48.             }
  49.  
  50.             Console.WriteLine();
  51.         }
  52.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement