Skip to content

Instantly share code, notes, and snippets.

View StrikerXx798's full-sized avatar

Evgeniy Turetskov StrikerXx798

  • Russia, Nizhny Novgorod
View GitHub Profile
@StrikerXx798
StrikerXx798 / .cs
Created April 20, 2025 12:21
ДЗ: Объединение в одну коллекцию
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApp1
{
internal class Program
{
static void Main(string[] args)
{
@StrikerXx798
StrikerXx798 / .cs
Last active April 20, 2025 13:51
ДЗ: Динамический массив продвинутый
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApp1
{
internal class Program
{
const int CommandAddEmployee = 1;
const int CommandRemoveEmployee = 2;
@StrikerXx798
StrikerXx798 / .cs
Last active April 20, 2025 10:45
ДЗ: Динамический массив продвинутый
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApp1
{
internal class Program
{
static void Main(string[] args)
{
@StrikerXx798
StrikerXx798 / .cs
Created April 20, 2025 10:20
ДЗ: Очередь в магазине
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApp1
{
internal class Program
{
static void Main(string[] args)
{
@StrikerXx798
StrikerXx798 / .cs
Last active April 20, 2025 10:13
ДЗ: Толковый словарь
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApp1
{
internal class Program
{
static void Main(string[] args)
{
@StrikerXx798
StrikerXx798 / .cs
Last active April 19, 2025 16:33
ДЗ: Brave new world
using System;
using System.Text;
namespace ConsoleApp1
{
internal class Program
{
const ConsoleKey MoveUpKey = ConsoleKey.W;
const ConsoleKey MoveDownKey = ConsoleKey.S;
const ConsoleKey MoveLeftKey = ConsoleKey.A;
@StrikerXx798
StrikerXx798 / .cs
Last active April 19, 2025 14:58
ДЗ: Кадровый учет
using System;
using System.Text;
namespace ConsoleApp1
{
internal class Program
{
static void Main(string[] args)
{
Console.InputEncoding = Encoding.Unicode;
@StrikerXx798
StrikerXx798 / .cs
Last active April 19, 2025 14:00
ДЗ: Канзас сити шафл
using System;
using System.Text;
namespace ConsoleApp1
{
internal class Program
{
static void Main(string[] args)
{
Console.InputEncoding = Encoding.Unicode;
@StrikerXx798
StrikerXx798 / .cs
Last active April 19, 2025 13:31
ДЗ: UIElement
using System;
using System.Text;
namespace ConsoleApp1
{
internal class Program
{
static void Main(string[] args)
{
Console.InputEncoding = Encoding.Unicode;
@StrikerXx798
StrikerXx798 / .cs
Last active April 19, 2025 13:22
ДЗ: ReadInt
using System;
namespace ConsoleApp1
{
internal class Program
{
static void Main(string[] args)
{
int number = GetNumber();
Console.WriteLine($"Вы ввели число: {number}");