Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Task36
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- string menu = "Доступные команды: " +
- "\nДД - добавить досье" +
- "\nВВД - вывести все досье" +
- "\nУД - удалить досье" +
- "\nВ - выход из программы" +
- "\n\nВведите команду: ";
- string error = "Вы ввели команду которой нет!";
- string goodbye = "Вы выходите из программы. До свидания.";
- string readKey = "\nНажмите enter для продолжения. ";
- string userInput;
- bool wantExit = false;
- Dictionary<string, string> personnelAccounting = new Dictionary<string, string>();
- while (wantExit == false)
- {
- Console.Write(menu);
- userInput = Console.ReadLine();
- switch (userInput)
- {
- case "ДД":
- AddDossier(ref personnelAccounting);
- break;
- case "ВВД":
- ShowAllDossier(personnelAccounting);
- break;
- case "УД":
- DeleteDossier(ref personnelAccounting);
- break;
- case "В":
- wantExit = true;
- break;
- default:
- Console.WriteLine(error);
- break;
- }
- Console.WriteLine(readKey);
- Console.ReadLine();
- Console.Clear();
- }
- Console.WriteLine(goodbye);
- }
- static void DeleteDossier(ref Dictionary<string, string> personnelAccounting)
- {
- string enterFullName = "Введите ФИО того чьё досье хотите удалить: ";
- string keyExistsMessage = "Такое ФИО не существует в картотеке!";
- string userInput;
- bool keyExists;
- Console.Write(enterFullName);
- userInput = Console.ReadLine();
- keyExists = personnelAccounting.ContainsKey(userInput);
- if (keyExists == true)
- {
- personnelAccounting.Remove(userInput);
- }
- else
- {
- Console.WriteLine(keyExistsMessage);
- }
- }
- static void ShowAllDossier(Dictionary<string, string> personnelAccounting)
- {
- foreach (var item in personnelAccounting)
- {
- Console.WriteLine(item.Key + " - " + item.Value);
- }
- }
- static void AddDossier(ref Dictionary<string, string> personnelAccounting)
- {
- string enterFullName = "Введите ФИО: ";
- string enterPosition = "Введите должность: ";
- string keyExistsMessage = "Такое ФИО уже существует в картотеке!";
- string name;
- string position;
- bool keyExists = false;
- Console.Write(enterFullName);
- name = Console.ReadLine();
- Console.Write(enterPosition);
- position = Console.ReadLine();
- keyExists = personnelAccounting.ContainsKey(name);
- if (keyExists == false)
- {
- personnelAccounting.Add(name, position);
- }
- else
- {
- Console.WriteLine(keyExistsMessage);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement