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 word;
- bool isExit = true;
- while (isExit)
- {
- Console.WriteLine("Введите любое слово:\nЕсли хотите закончить ввод слов напишите exit");
- word = Console.ReadLine();
- if (word == "exit")
- {
- isExit = false;
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement