Skip to content

Instantly share code, notes, and snippets.

View Hellion2008's full-sized avatar

Serg Hellion2008

  • 16:50 (UTC +03:00)
View GitHub Profile
@Hellion2008
Hellion2008 / gist:d33b83a250d1e10740377f5ef2525be6
Last active October 22, 2025 06:02
Усл. операторы и циклы ДЗ: Последовательность
using System;
namespace CSHome
{
class Program
{
static void Main(string[] args)
{
int startNumber = 5;
int maxNumber = 103;
@Hellion2008
Hellion2008 / gist:cd826713f1671daf2ca7e20cb545dc7f
Last active October 22, 2025 05:54
Усл. операторы и циклы ДЗ: Контроль выхода
using System;
namespace CSHome
{
class Program
{
static void Main(string[] args)
{
string exitMessage = "exit";
@Hellion2008
Hellion2008 / gist:a4b2dd8e2e35b234ba634cdb9b51304f
Created October 21, 2025 19:57
Условные операторы и циклы ДЗ: Освоение циклов
using System;
namespace CSHome
{
class Program
{
static void Main(string[] args)
{
Console.Write("Введиет сообщение: ");
string message = Console.ReadLine();
@Hellion2008
Hellion2008 / gist:dccab0ee2aa9e75b98918e517a9ea9c1
Created October 21, 2025 19:12
Основы программирования ДЗ: Поликлиника
using System;
using System.Text;
namespace CSLight
{
class Program
{
static void Main(string[] args)
{
Console.InputEncoding = Encoding.Unicode;
@Hellion2008
Hellion2008 / gist:27c965daca4ef854db1668712971a597
Created October 21, 2025 18:21
Основы программирования ДЗ: Магазин кристаллов
using System;
using System.Text;
namespace CSLight
{
class Program
{
static void Main(string[] args)
{
Console.InputEncoding = Encoding.Unicode;
@Hellion2008
Hellion2008 / gist:22269c350c1e85cb6991ddad2b6ab8d8
Created October 21, 2025 13:11
Основы программирования ДЗ: Перестановка местами значений
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CSLight
{
class Program
{
@Hellion2008
Hellion2008 / gist:ad58d3859b575cfc04d754fb5553c92f
Last active October 21, 2025 16:16
Основы программирования ДЗ: Картинки
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CSLight
{
class Program
{
@Hellion2008
Hellion2008 / gist:2d0b0ba9c790482b656aa3f9a0ea2741
Created October 21, 2025 13:01
ДЗ: Работа со строками
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CSLight
{
class Program
{