Created
November 1, 2025 09:47
-
-
Save RPVUnityDeveloper/90eadfb7f9dadf8d5a19f526e27b8180 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
| public class Class | |
| { | |
| static void Main() | |
| { | |
| string wordExit = "exit"; | |
| string word = ""; | |
| while (word != wordExit) | |
| { | |
| Console.Write("Введите слово: "); | |
| word = Console.ReadLine(); | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment