- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string[] exit_program = { "1", "2", "3", "4", "5", "6" };
bool flag = true;
while(flag)
{
Console.WriteLine("Введите команду");
string ss = Console.ReadLine();
for (int i = 0; i < exit_program.Length&&flag;i++)
{
if (ss == exit_program[i])
{
Console.WriteLine("Вы ввели {0} и теперь можете выйти из цикла",ss);
flag = false;
break;
}
}
}
Console.ReadLine();
}
}
}
Говнокод, позволяющий выйти из консольного приложение по нажатию цифр 1,2....6