Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Homework2_6
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- const string CommandSetName = "SetName";
- const string CommandSetPassword = "SetPassword";
- const string CommandWriteName = "WriteName";
- const string CommandExit = "Esc";
- string desiredOperation = "";
- string userName = "";
- string userPassword = "";
- string userInputPassword = "";
- bool activeMenu = true;
- while (activeMenu)
- {
- Console.WriteLine("\nВыберете необходимую операцию:");
- Console.WriteLine($"{CommandSetName} - установить имя.");
- Console.WriteLine($"{CommandSetPassword} - установить пароль.");
- Console.WriteLine($"{CommandWriteName} - вывести имя.");
- Console.WriteLine($"{CommandExit} - Выйти из программы.");
- Console.Write("Ваш выбор: ");
- desiredOperation = Console.ReadLine();
- switch (desiredOperation)
- {
- case CommandSetName:
- Console.Write("\nВведите имя которое хотите установить пользователю: ");
- userName = Console.ReadLine();
- break;
- case CommandSetPassword:
- Console.Write("\nВведите пароль которой хотите установить пользователю: ");
- userPassword = Console.ReadLine();
- break;
- case CommandWriteName:
- Console.Write("\nЧтобы вывести имя пользователя введите пароль: ");
- userInputPassword = Console.ReadLine();
- if (userInputPassword == userPassword)
- {
- Console.WriteLine($"\nИмя пользователя: {userName}");
- }
- else
- {
- Console.WriteLine("\nНеправильно введён пароль.\n");
- }
- break;
- case CommandExit:
- activeMenu = false;
- break;
- default:
- Console.WriteLine("\nВыбрана неверная операция.\n");
- break;
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement