Skip to content

Instantly share code, notes, and snippets.

@mafoxic
mafoxic / gist:0dd26ce09e0c81463e42ebf2f403cbe4
Last active February 13, 2024 15:08
Задание степень двойки
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace powerOfTwo
{
internal class Program
{
@mafoxic
mafoxic / gist:6efb5ec11c3ae9d86bbb94381ee756c2
Last active February 13, 2024 12:07
Задание кратные числа
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace multiples
{
internal class Program
{
@mafoxic
mafoxic / gist:93d7615516440429672f1ea7744d0d6e
Created February 9, 2024 15:16
Задание программа под паролем
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace programWithPassword
{
internal class Program
@mafoxic
mafoxic / gist:942af1286e4af928c551af636035e579
Created February 9, 2024 13:53
Задание вывод имени
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace nameOutput
{
internal class Program
{
@mafoxic
mafoxic / gist:ff2eddd757997fa5542f2c68911e4202
Created February 9, 2024 12:16
Задание консольное меню
using System;
using System.Collections.Generic;
using System.Diagnostics.Eventing.Reader;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace consoleMenu
{
@mafoxic
mafoxic / gist:cd5875dca28d347f83f3510de402e4fb
Created February 8, 2024 14:50
Задание конвертер валют
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace currencyExchanger
{
internal class Program
{
@mafoxic
mafoxic / gist:fc4489aef1a32c6b3fe6b18a7c23b900
Last active February 8, 2024 10:29
Задание сумма чисел
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace sumOfNumbers
{
internal class Program
{
@mafoxic
mafoxic / gist:969f86b6d6a53c745801039e4b387639
Last active February 7, 2024 17:15
Задание последовательность
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace sequence
{
internal class Program
{
@mafoxic
mafoxic / gist:dca7c683dfba92ffbb017f8dc3343040
Last active February 7, 2024 15:11
Задание Контроль выхода
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Permissions;
using System.Text;
using System.Threading.Tasks;
namespace outputControl
{
internal class Program
@mafoxic
mafoxic / gist:6a2a10c682dfceb6e9bb66d18ae86140
Created February 7, 2024 10:40
Задание освоение циклов
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MasteringCycles
{
internal class Program
{