Skip to content

Instantly share code, notes, and snippets.

View ralsed's full-sized avatar

Ralsed ralsed

  • Логистика
View GitHub Profile
@ralsed
ralsed / gist:73ae8285b1bc389efd4c51730f902394
Created October 11, 2025 18:32
ДЗ: Переменные
using System;
using System.Text;
namespace variables
{
internal class Program
{
static void Main(string[] args)
{
string firstName = "Иван";
@ralsed
ralsed / gist:72d81f2311cbd8da1750b1a7706a15cf
Created October 12, 2025 08:21
ДЗ: Работа со строками
using System;
namespace workingWithStrings
{
internal class Program
{
static void Main(string[] args)
{
string name;
string country;
@ralsed
ralsed / gist:e73c45b1fe4ed4b108f3dd8e9173f1a2
Created October 12, 2025 08:55
ДЗ: Картинки
using System;
namespace pictures
{
internal class Program
{
static void Main(string[] args)
{
int pictures = 52;
int picturesInRow = 3;
@ralsed
ralsed / gist:2d0ae2ac6cb714ac9babaee151ae9c38
Last active October 12, 2025 14:53
ДЗ: Перестановка местами значений
using System;
namespace swappingValues
{
internal class Program
{
static void Main(string[] args)
{
string name = "Teben'kov";
string surname = "Aleksandr";
@ralsed
ralsed / gist:9f6df7c8c77c1286dc8e58efe16c9cc2
Created October 12, 2025 14:51
Магазин кристаллов
using System;
namespace crystalStore
{
internal class Program
{
static void Main(string[] args)
{
int gold;
int crystals = 1000;
@ralsed
ralsed / gist:b70239c18a98c12731506d11f255112e
Last active October 12, 2025 15:48
ДЗ: Поликлиника
using System;
namespace Polyclinic
{
internal class Program
{
static void Main(string[] args)
{
int quantityOfPatients;
int receptionTimeInMinutes = 10;