LeRoY_Go

Untitled

Jun 28th, 2020
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1.  
  2. namespace ConsoleApp5
  3. {
  4. class Program
  5. {
  6. static void Main(string[] args)
  7. {
  8. for (int i = 0; ; i++)
  9. {
  10. Console.Write("Введите сообщение: ");
  11. string userInput = Console.ReadLine();
  12. if (userInput == "exit")
  13. {
  14. break;
  15. }
  16. }
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment