Skip to content

Instantly share code, notes, and snippets.

@ILTZWI
ILTZWI / gist:bb6ff86ad3889f480f8d642d12813b06
Created October 23, 2025 20:53
ДЗ: Поликлиника
using System;
namespace Ijunior
{
internal class Program
{
static void Main(string[] args)
{
int peopleInLine;
int timeInLine = 10;
@ILTZWI
ILTZWI / gist:bb3b160cf3e34b372257f03331b842cc
Created October 23, 2025 12:36
ДЗ: Магазин кристаллов
using System;
namespace Ijunior
{
internal class Program
{
static void Main(string[] args)
{
int priceCrystal = 10;
int walletWithGold;
@ILTZWI
ILTZWI / gist:6758b118d4fe93d5f1b01dfcfa5c7a6f
Created October 23, 2025 12:30
ДЗ: Перестановка местами значений
using System;
namespace Ijunior
{
internal class Program
{
static void Main(string[] args)
{
string cup1;
string cup2;
@ILTZWI
ILTZWI / gist:c874867338c8328714891e1e48e42634
Created October 22, 2025 21:09
ДЗ: Перестановка местами значений
using System;
using System.Security.Cryptography;
namespace Ijunior
{
internal class Program
{
static void Main(string[] args)
{
string cup1;
@ILTZWI
ILTZWI / gist:c557b0029b795147d58166cc6c24c5cd
Created October 22, 2025 20:56
ДЗ: Магазин кристаллов
using System;
namespace Ijunior
{
internal class Program
{
static void Main(string[] args)
{
int priceCrystal = 10;
int goldInYourWallet;
@ILTZWI
ILTZWI / gist:c40fcf04cfbdddcdb9d6536342832b65
Created October 22, 2025 19:20
ДЗ: Перестановка местами значений
using System;
namespace Ijunior
{
internal class Program
{
static void Main(string[] args)
{
string name;
string surname;
@ILTZWI
ILTZWI / gist:c5a9e76c858988bb981a5f1c3ffdb334
Created October 22, 2025 16:05
ДЗ: Картинки
using System;
namespace Ijunior
{
internal class Program
{
static void Main(string[] args)
{
int albumWithPictures = 52;
int rowСapacity = 3;
@ILTZWI
ILTZWI / gist:030baac5de7252ab28182accf206b998
Created October 22, 2025 10:44
ДЗ: Картинки
using System;
namespace Ijunior
{
internal class Program
{
static void Main(string[] args)
{
int numberOfPictures;
int rowСapacity = 3;
@ILTZWI
ILTZWI / gist:f4f654d42d6c4283282b208b81ae7c8b
Created October 21, 2025 21:07
ДЗ: Картинки
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ijunior
{
internal class Program
{
@ILTZWI
ILTZWI / gist:9f2d25d6c2123a52e933d84af1310ba3
Created October 21, 2025 20:51
ДЗ: Работа со строками
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ijunior
{
internal class Program
{