using System;
using System.Text;
using System.IO;
using System.Text.RegularExpressions;
using System.Collections;
namespace stek
{
class MainClass
{
public static void Main(string[] args)
{
Stack s = new Stack();//объявляем стек s.
StreamReader fileIn = new StreamReader("LS.txt");//выводим файл.
string findNumb = "6";
while (!fileIn.EndOfStream)
{
string text1 = fileIn.ReadLine();
//Console.WriteLine(text1);
s.Push(text1);//помещаем считанные строки в стек
Console.WriteLine(s.Peek());
}
Console.WriteLine("в стеке содержиться " + s.Count + " элементов");
//находим индекс элемента который ищем
int idx = Array.IndexOf(s.ToArray(), findNumb);
for (int i = 0; i < s.Count; i++)
{
if (i == 6)
{
s.Pop();//и удаляем его
}
}
Console.WriteLine("После удаления в стеке осталось " + s.Count + " элементов");
Console.ReadKey();
}
}
}