Advertisement
junniorrkaa

Контроль выхода

Aug 13th, 2024 (edited)
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.49 KB | Source Code | 0 0
  1. using System;
  2.  
  3. namespace CSLight
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string userInput;
  10.             string text = "exit";
  11.  
  12.             Console.Write("Введите текст: ");
  13.             userInput = Console.ReadLine();
  14.  
  15.             while (userInput != text)
  16.             {
  17.                 Console.Write("Введите текст: ");
  18.                 userInput = Console.ReadLine();
  19.             }
  20.         }
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement