Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace CSLight
- {
- public class Program
- {
- static void Main(string[] args)
- {
- string exitWord = "exit";
- string word;
- bool isExit = true;
- while (isExit)
- {
- Console.WriteLine($"Введите любое слово:\nЕсли хотите закончить ввод слов напишите exit {exitWord}");
- word = Console.ReadLine();
- if (word == exitWord)
- {
- isExit = false;
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement