Last active
June 5, 2025 03:29
-
-
Save tigercubgames/b44a7412882a6b18264938666f82ef56 to your computer and use it in GitHub Desktop.
Условные операторы и циклы. ДЗ: Контроль выхода
This file contains hidden or 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 Homework | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string wordForExit = "exit"; | |
string userInput = ""; | |
Console.WriteLine($"Программа завершит работу при вводе слова {wordForExit}."); | |
while (userInput != wordForExit) | |
{ | |
userInput = Console.ReadLine(); | |
} | |
Console.WriteLine("Программа завершена."); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment