Created
February 4, 2025 11:26
-
-
Save ALJEMor/f2be76f254c83297b208b693419aef34 to your computer and use it in GitHub Desktop.
04.02.2025_ждем выход
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace До_выхода__exit_ | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
//Написать программу, которая будет выполняться до тех пор, пока не будет введено слово exit. | |
string userInput = Console.ReadLine(); | |
while (userInput != "exit") | |
{ | |
userInput = Console.ReadLine(); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment