This commit is contained in:
Пытков Роман
2024-01-30 23:19:36 +03:00
parent 75d2db5b75
commit 8b40248caf
2 changed files with 15 additions and 8 deletions

View File

@@ -4,6 +4,11 @@ internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
int x = 5;
MyQueue obj = new MyQueue();
obj.Push(x);
int param_2 = obj.Pop();
int param_3 = obj.Peek();
bool param_4 = obj.Empty();
}
}