Skip to content

Instantly share code, notes, and snippets.

@ShamilAitov
Last active February 3, 2023 23:25
Show Gist options
  • Save ShamilAitov/4de613db43bd075ec6947558b7540c3d to your computer and use it in GitHub Desktop.
Save ShamilAitov/4de613db43bd075ec6947558b7540c3d to your computer and use it in GitHub Desktop.
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http.Headers;
using System.Text;
using System.Threading.Tasks;
namespace УрокApp2
{
internal class Program
{
static void Main(string[] args)
{
string userInput = " ";
string menuSelection = "exit";
while (userInput != menuSelection)
{
Console.WriteLine($"Ты попал в наше меню, для выхода из него, напиши {menuSelection}: ");
userInput = Console.ReadLine();
}
Console.WriteLine("Ждем тебя еще!");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment