 
				static void Main()
    {
        string[] data = Console.ReadLine().Split('.');
        DateTime current = new DateTime(int.Parse(data[0]),int.Parse(data[1]),int.Parse(data[2]));
        if (current.Day == DateTime.DaysInMonth(current.Year, current.Month))
           Console.WriteLine("Yes");
        else Console.WriteLine("No");
    }
//www.VideoSharp.info/Консоль/Календарь/Секундомер
using System;
class VideoSharp
{
    static void Main()
    {
        long s = long.Parse(Console.ReadLine());
        long m = (s / 60) % 60;
        long h = ((s / 60) / 60) % 24;
     
        Console.WriteLine("{0} {1} {2}", h, m, s % 60);
    }
}
Хочу поделиться с тобой интересной информацией по данным классам. Мне особенно нравиться класс - HybridDictionary пытается оптимизировать Hashtable. Он реализует структуру данных связанного списка и хеш-таблицы. Он реализует IDictionary с помощью ListDictionary, когда коллекция небольшая, и Hashtable, когда коллекция большая.
//www.VideoSharp.info/Консоль/Календарь/Високосный год
using System;
class VideoSharp
{
    static void Main()
    {
        int start = int.Parse(Console.ReadLine());
        int ends = int.Parse(Console.ReadLine());
        int total = 0;
        for(int year = start; year <= ends; year++)
        {
            if(DateTime.IsLeapYear(year)) total++;
        }
        Console.WriteLine(total);
    }
}
Люблю работать с базами данных
static void Main()
    {
        DateTime date;
        if (DateTime.TryParse(Console.ReadLine(),out date)) Console.WriteLine(date.DayOfYear);
        else Console.WriteLine(-1);
    }
//www.VideoSharp.info/Консоль/Календарь/День недели
using System;
class VideoSharp
{
    static void Main()
    {
        int yyyy = int.Parse(Console.ReadLine());
        int mm = int.Parse(Console.ReadLine());
        int dd = int.Parse(Console.ReadLine());
        DateTime date = new DateTime(yyyy, mm, dd);
        Console.WriteLine (date.DayOfWeek);
    }
}
Компиляция: OK
Тест 000: ВЕРНО
Тест 001: ВЕРНО
Тест 002: ВЕРНО
Тест 003: ВЕРНО
Тест 004: ВЕРНО
Тест 005: ВЕРНО
Тест 006: ВЕРНО
ИТОГО: 100 %
Робот Шарп: Великолепное решение! Молодец!
using System;
using System.Globalization;
class VideoSharp
{
    static void Main()
    {
            DateTime dMin = DateTime.MinValue;
            DateTime dMax = DateTime.MaxValue;
            Console.WriteLine(dMin.ToString("G", CultureInfo.CreateSpecificCulture("ru")));
            Console.WriteLine(dMax.ToString("G", CultureInfo.CreateSpecificCulture("ru")));
    }
}
static void Main()
    {
        DateTime с = DateTime.Parse(Console.ReadLine());
        Console.WriteLine(с.ToString("hh:mm:ss yyyy.MM.dd")); 
    }
long n = Math.Abs(long.Parse(Console.ReadLine()));
        int count = 0;
        long digit = 0;
        while(n > 0)
        {
            digit = n % 10;
            n /= 10;
            if (digit % 2 == 0)
                count++;
            else
                count--;
        }       
        Console.WriteLine((count == 0) ? 0 : (count > 0) ? 2 : 1);
static void Main()
    {
        long number = long.Parse(Console.ReadLine());
        while(number >= 10)
        {
            number = number / 10 + number % 10;
        }
       
        Console.WriteLine(number);
    }
Ха, смотрю -  23309. Glebov Alexandr Leonidovich никогда никому плюсики не ставит, очень странный парень
может он не знает, что кнопку надо бы нажать
//www.VideoSharp.info/Консоль/Цифры/Серединка
using System;
class VideoSharp
{
    static void Main()
    {
        int a = Convert.ToInt32(Console.ReadLine());
        Console.WriteLine((a % 100000) / 10);
    }
}
//www.VideoSharp.info/Консоль/Цифры/Штирлиц
using System;
class VideoSharp
{
    static void Main()
    {
        int a = Convert.ToInt32(Console.ReadLine());
        Console.WriteLine((a % 10) * 10 + (a / 10));
    }
}
у тебя я смотрю pqadmin более новый. я ставил в другом месте на другой машине новый pgadmin - всё элегантно проходило
static void Main()
    {
        string [] s = Console.ReadLine().Split();
        long a = long.Parse(s[0]);
        long b = long.Parse(s[1]);
        long c = long.Parse(s[2]);
        long d = long.Parse(s[3]);
        long ab=a-b;
        if(ab<0) ab=-ab;
        long bc=b-c;
        if(bc<0) bc=-bc;
        long cd=c-d;
        if(cd<0) cd=-cd;
        long da=d-a;
        if(da<0) da=-da;
        if(ab<=bc && ab<=cd && ab<=da) Console.WriteLine(ab);
        if(bc<=ab && bc<=cd && bc<=da) Console.WriteLine(bc);
        if(cd<=ab && cd<=bc && cd<=da) Console.WriteLine(cd);
        if(da<=ab && da<=bc && da<=cd) Console.WriteLine(da);
    }
{
    static void Main()
    {
            int s = 0;
            int q = 1;
            int N = Convert.ToInt32(Console.ReadLine());
            for (int i = 0; i < 4; i++)
            { 
                s += (N % 10);
                N /= 10;             
                s *= 10;
            }
            Console.WriteLine(s/10);
    }
}
static void Main()
    {
        long a = long.Parse(Console.ReadLine());
        if(a < 5)
        {
            Console.WriteLine(0);
        }
        else
        {
            Console.WriteLine(a / 5 * a);
        }
    }
static void Main()
    {
        string[] s = Console.ReadLine().Split();
        double x1 = double.Parse(s[0]);
        double c = double.Parse(s[1]);
       
        double x2 = c / x1;
        double b = -(x1 + x2);
       
        Console.WriteLine("{0:f1} {1:f1}", x2, b);
    }
Подписка в Клуб формулистов обновлена.
Количество дней: +7
Количество байт: +1024
Подписка КФ до: 2019-11-24
Остаток байтов: 1027
Вы являетесь участником Клуба формулистов.
static void Main()
    {
        string[] s = Console.ReadLine().Split('+','*','=');
        double a = double.Parse(s[0]);
        double b = double.Parse(s[1]);
        double c = double.Parse(s[2]);
        Console.WriteLine("{0}",a + b * c);
    }
static void Main()
    {
        string[] s = Console.ReadLine().Split();
        long a = long.Parse(s[0]);
        long b = long.Parse(s[1]);
        long c = long.Parse(s[2]);
        long d = b*b-4*a*c;
        Console.WriteLine(d);
    }
static void Main()
    {
        string[] sA = Console.ReadLine().Split();
        string[] sB = Console.ReadLine().Split();
        string[] sC = Console.ReadLine().Split();
        int Ax = int.Parse(sA[0]);
        int Ay = int.Parse(sA[1]);
        int Bx = int.Parse(sB[0]);
        int By = int.Parse(sB[1]);
        int Cx = int.Parse(sC[0]);
        int Cy = int.Parse(sC[1]);
        double AB = Math.Sqrt(Math.Pow(Ax-Bx,2)+Math.Pow(Ay-By,2));
        double BC = Math.Sqrt(Math.Pow(Bx-Cx,2)+Math.Pow(By-Cy,2));
        double CA = Math.Sqrt(Math.Pow(Cx-Ax,2)+Math.Pow(Cy-Ay,2));
        double lenABC = AB+BC+CA;
        Console.WriteLine("{0:f2}",lenABC);
    }
static void Main()
    {
        string str = Console.ReadLine ();
        if (str == "0") Console.WriteLine ("08:00");
        else
        {
            int example = int.Parse (str);
            int peremena = example - 1;
            int time = 45*example + 10*peremena+8*60;
            int timeHour = (int)time/60%24;
            int timeMinute = time%60;
            Console.WriteLine ("{0:00}:{1:00}",timeHour ,timeMinute );
        }
    }
static void Main()
    {
        Boolean val1,val2;
        val1 = Boolean.Parse( Console.ReadLine());
        val2 = Boolean.Parse( Console.ReadLine());
        Console.WriteLine(  "{0}", val1 || val2 );
    }
static void Main()
    {
        string s = Console.ReadLine();
        ulong mul1, mul2;
        int i = s.IndexOf('*');
        int j = s.IndexOf('=');
        mul1 = ulong.Parse(s.Substring(0, i));
        mul2 = ulong.Parse(s.Substring(i + 1 , j - (i + 1)));
        Console.WriteLine("{0}", mul1*mul2);
    }
{
    static void Main()
    {
        double d1=double.Parse(Console.ReadLine());
        double d2=double.Parse(Console.ReadLine());
        double r = Math.Sqrt(Math.Pow(d1, 2) - Math.Pow(d2, 2));
        Console.WriteLine("{0:0.00}",r);
    }
}
//www.VideoSharp.info/Консоль/Геометрия/Синус радиана
using System;
class VideoSharp
{
    static void Main()
    {
        double l = double.Parse(Console.ReadLine());
        Console.WriteLine("{0:f2}",Math.Sin(Math.PI/(180/l)));
    }
}
О какой деловой встрече в этом уроке спрашивает Евгений Витольдович? Любопытно.
{
        string[] a = Console.ReadLine().Split();
        string[] b = Console.ReadLine().Split();
        double x1, y1, x2, y2, l;
        x1 = double.Parse(a[0]);
        y1 = double.Parse(a[1]); 
        x2 = double.Parse(b[0]);
        y2 = double.Parse(b[1]); 
        l = Math.Sqrt(Math.Pow(x2 - x1, 2) + Math.Pow(y2 - y1,2));
        Console.WriteLine("{0:f2}", l);   
    }
Добрый день, Евгений!
Я закончил курс "Управление Отелем", но в этом курсе не раскрыто написание контроллера и связывание моделей с формами(view). Прошу сообщить. Возможно продолжение нужно искать в другом курсе или тема контроллеров и связь моделей с формами раскрывается в курсе. Курс очень понравился но, не понятно почему курс обрывается на 31 видео-уроке.
static void Main()
    {
            double c = double.Parse(Console.ReadLine());
            double d = c / Math.PI;
            double s = Math.PI * Math.Pow((d / 2), 2);
            Console.WriteLine(s.ToString("#,0.00"));
    }
Так и не понял где ошибка 2 и 3 тест не проходят. Хотя в студии все ок.
Попался на невнимательности. Боковые поверхности. ухх.
static void Main()
    {
            double a = double.Parse(Console.ReadLine());
            double x = double.Parse(Console.ReadLine());
            double t = (a + Math.Sqrt(a * x)) / (Math.Sqrt(a) + Math.Log(a + x));
            Console.WriteLine(t.ToString("#,0.000000"));
    }
static void Main()
    {
            double a = double.Parse(Console.ReadLine());
            double x = double.Parse(Console.ReadLine());
            double y = ((a*a)+x*Math.Pow(x, 1/3f)) / (Math.Sqrt(a)+ Math.Pow(x, 1/3f));
            Console.WriteLine(y.ToString("#,0.000000"));   
    }
using System;
using System.Globalization;
class VideoSharp
{
    static void Main()
    {
            double a = double.Parse(Console.ReadLine());
            double b = double.Parse(Console.ReadLine());
            double x = double.Parse(Console.ReadLine());
            double t = Math.Pow(a + b, 2) * Math.Sqrt((a + x) / (b + x)) * Math.Log(a + x);
            var format = (NumberFormatInfo)CultureInfo.InvariantCulture.NumberFormat.Clone();
            format.NumberGroupSeparator = "";
            Console.WriteLine(t.ToString("#,0.0000",format));
    }
}
static void Main()
    {
         double a = double.Parse(Console.ReadLine());
         double x = double.Parse(Console.ReadLine());
         double z = (Math.Pow(a*x,2)*Math.Pow((1/Math.Pow(a+x,2)), 1 / 3f)) / (a * Math.Log(a + x*x));
         Console.WriteLine("{0:N6}", z);
    }
double a = double.Parse(Console.ReadLine());
            double x = double.Parse(Console.ReadLine());
            double t = (Math.Pow(a*x, 1 / 3f)) / (a + x*Math.Log10(a + x));
            Console.WriteLine("{0:N5}", t);
static void Main()
    {
            double a = double.Parse(Console.ReadLine());
            double x = double.Parse(Console.ReadLine());
            double z = (Math.Pow(Math.Pow(x,3),1/4f)+a*x) / (Math.Log(Math.Sqrt(Math.Pow(a,2)+Math.Sqrt(x))));
            Console.WriteLine("{0:0.0000}", z);
    }
static void Main()
    {
        double a = double.Parse(Console.ReadLine());
        double x = double.Parse(Console.ReadLine());
        double y = Math.Pow(Math.Abs(a-Math.Pow(x,2))*Math.Log(a+x) , 1 / 3f) / (Math.Pow(Math.Pow(x,2),1/3f)+Math.Pow(a,1/5f));
        Console.WriteLine("{0:0.00}", y);
    }
static void Main()
    {
            double t = double.Parse(Console.ReadLine());
            Console.WriteLine("{0:0.000}", Math.Abs(t));
            Console.WriteLine("{0:0.000}", Math.Sin(t));
            Console.WriteLine("{0:0.000}", Math.Cos(t));
            Console.WriteLine("{0:0.000}", Math.PI*t);
            Console.WriteLine("{0:0.000}", Math.Pow(t,2));
            Console.WriteLine("{0:0.000}", Math.Sqrt(t));
            Console.WriteLine("{0:0.000}", Math.Log(t));
            Console.WriteLine("{0:0.000}", Math.Log10(t));
            Console.WriteLine("{0:0.000}", Math.Exp(t));
            Console.WriteLine("{0:0.000}", Math.Pow(t,Math.Exp(1))); 
    }
static int sum;
        static void Main(string[] args)
        {
            string s = Console.ReadLine();
            do
            {
                sum = 0;
                for (int i = 0; i < s.Length; i++)
                {
                    sum += int.Parse(Char.ToString(s[i]));
                }
                s = sum.ToString();
            }
            while (s.Length > 1);
            Console.WriteLine("{0}", sum);
          }
ИТОГО 100%
static void Main()
    {
            string[] s = Console.ReadLine().Split();
            int d1 = int.Parse(s[0]);
            int d2 = int.Parse(s[1]);
            Console.WriteLine("{0} + {1} = {2}", d1, d2, d1 + d2);
            Console.WriteLine("{0} - {1} = {2}", d1, d2, d1 - d2);
            Console.WriteLine("{0} x {1} = {2}", d1, d2, d1 * d2);
            Console.WriteLine("{0} : {1} = {2} ({3})", d1, d2, d1 / d2, d1 % d2);
    }
Все тесты ВЕРНО
string s1 = Console.ReadLine();
            string s2 = Console.ReadLine();
            int sb = 0;
            for (int i = 0; i < s1.Length; i++)
            {
                sb += Math.Abs(int.Parse(Char.ToString(s1[i])) - int.Parse(Char.ToString(s2[i])));
            }
            Console.WriteLine(sb);
static void Main()
    {
        string [] s = Console.ReadLine().Split();
        int a = Convert.ToInt32(s[0]);
        int b = Convert.ToInt32(s[1]);
        int cash = a * 25 + b * 12 + 5 * 2 + 10 * 5;
        Console.WriteLine(cash / 40);
    }
Добрый день, Евгений!
Прошу сообщить. Сайт не отображает видео курсы, результаты  и.т.д.  Это проблемы на сайте или мне искать проблему на своей стороне.
string s = Console.ReadLine();
            int lens = s.Length;
            int total = 0;
            while (lens > 0)
            {
                total += int.Parse(Char.ToString(s[lens-1]));
                lens--;
            }
            Console.WriteLine(total);
static void Main()
    {
       string[] s = Console.ReadLine().Split();
       int N = int.Parse(s[0]);
       int R = int.Parse(s[1]);
       Console.WriteLine(N*1024+R*2); 
    }
static void Main()
    {
        int Г,Д,Э,М,К,О,П;
        int домов,квартир,окон,мурзиков;
        Г = int.Parse(Console.ReadLine());
        Д = int.Parse(Console.ReadLine());
        Э = int.Parse(Console.ReadLine());
        П = int.Parse(Console.ReadLine());
        К = int.Parse(Console.ReadLine());
        О = int.Parse(Console.ReadLine());
        М = int.Parse(Console.ReadLine());
        домов = Г * Д;
        квартир = домов * Э * П * К;
        окон = квартир * О;
        мурзиков = домов * М;
        Console.WriteLine(домов);
        Console.WriteLine(квартир);
        Console.WriteLine(окон);
        Console.WriteLine(мурзиков);
    }
static void Main()
    {
        string[] s = Console.ReadLine().Split();
        long x = long.Parse(s[0]);
        long y = long.Parse(s[1]);
        Console.WriteLine((x*100/y+y)*2);
    }
static void Main()
    {
      int t=0;
      t+=10;
      t+=4; t-=2;
      t-=8; t+=3;
      t+=18;
      t+=0;
      int time=0;
      time=10+15+7+30;
      Console.WriteLine("5");
      Console.WriteLine(t);
      Console.WriteLine("{0} {1}",time/60,time%60);
  
    }
static void Main()
    {
        string[] s = Console.ReadLine().Split();
        UInt64 i0 = UInt64.Parse(s[0]);
        UInt64 i1 = UInt64.Parse(s[1]);
        Console.WriteLine("{0} {1}",i0+i1,i0*i1);
    }
static void Main()
    {
        string s = Console.ReadLine();
        s=s.Substring(1,s.Length-2);
        Console.WriteLine("["+s.TrimStart(' ','\t')+"]");
        Console.WriteLine("["+s.TrimEnd(' ','\t')+"]");
        Console.WriteLine("["+s.Trim(' ','\t')+"]");
    }
static void Main()
    {
        string s = Console.ReadLine();
        Console.WriteLine(s.StartsWith("Hello",StringComparison.CurrentCultureIgnoreCase));
        Console.WriteLine(s.EndsWith("."));
    }
{
        string s = Console.ReadLine();
        int i = s.IndexOf("(")+1;
        int k = s.IndexOf(")");
        Console.WriteLine(s.Substring(i,k-i));
    }
Робот Шарп не правильно проводит тест данной задачи.
static void Main()
    {
        string[] s = new string[7];
        for (int i=0; i<7;i++)
            s[i]=Console.ReadLine();
        for (int i=0; i<7;i++)
            Console.WriteLine(s[i].PadRight(8)+s[i].PadLeft(8));
    }
{
        string s1 = Console.ReadLine();
        string s2 = Console.ReadLine();
        Console.WriteLine(s1.Remove(s1.IndexOf("(")+1,s1.IndexOf(")")-s1.IndexOf("(")-1).Insert(s1.IndexOf("(")+1,s2));
    }
static void Main()
    {
        string s1 = Console.ReadLine();
        string s2 = Console.ReadLine();
            s1 = s1.Insert(s1.IndexOf(" ",0), " "+s2);
            Console.WriteLine(s1);
    }
static void Main()
    {
        string s = Console.ReadLine();
        Console.WriteLine(s.IndexOf(" ", 0).ToString()+" "+s.LastIndexOf(" ",s.Length));
    }
static void Main()
{
            string s = Console.ReadLine().ToLower();
            for(int i = 0; i < 5; i++)
            {
                Console.WriteLine(s.Contains(Console.ReadLine().ToLower()));
            }
}
static void Main()
    {
        string s1 = Console.ReadLine();
        string s2 = Console.ReadLine();
        if (s1.ToLower().CompareTo(s2.ToLower())==0)
            Console.WriteLine("True");
        else
            Console.WriteLine("False");
    }
static void Main()
    {
        string[] s = Console.ReadLine().Split(' ');
        Console.WriteLine(s[0]+"\n"+s[1]+"\n"+s[2]+"\n"+s[3]+"\n"+s[4]);
    }
string s1 = Console.ReadLine();
            string s2 = Console.ReadLine();
            string s3 = String.Copy(s1);
            s1 = String.Copy(s2);
            s2 = String.Copy(s3);
            Console.WriteLine(s1 + "\n" + s2);
string s1 = Console.ReadLine();
            string s2 = Console.ReadLine();
            Console.WriteLine(s1.CompareTo(s2));
static void Main()
    {
        string s1=Console.ReadLine();
        string s2=Console.ReadLine();
        Console.WriteLine(s1.Length+" "+s2.Length);
    }
static void Main()
    {
            double[] s = Array.ConvertAll(Console.ReadLine().Split(' '), double.Parse);
            double x = s[0];
            double y = s[1];
            if (x<0) x=-x;
            if (y<0) y=-y;
            if((x<=2 && y<=2) && (x>=1 || y>=1))
                Console.WriteLine("Да");
            else Console.WriteLine("Нет");
    }
Что-то у тебя в таблице перепутаны поля - адрес и телефон, если я правильно понял
static void Main()
    {
        int[] num = Array.ConvertAll(Console.ReadLine().Split(' '),int.Parse);
        int sum=1;
        if (num[0]!=0 && num[1]!=0)
        {
         for (int i=1; i<=num[1]; i++)
         {
         sum*=num[0];
         }
        }
if (num[0]==0) sum=0;
if(num[1]==0) sum=1;
        Console.WriteLine(sum);
    }
static void Main()
    {
            int[] s1 = Array.ConvertAll(Console.ReadLine().Split(' '),int.Parse);
            int[] s2 = Array.ConvertAll(Console.ReadLine().Split(' '),int.Parse);
            int[] s3 = Array.ConvertAll(Console.ReadLine().Split(' '),int.Parse);
            int[] s4 = Array.ConvertAll(Console.ReadLine().Split(' '),int.Parse);
            int[] s5 = Array.ConvertAll(Console.ReadLine().Split(' '),int.Parse);
        Console.WriteLine("{0} {1} {2} {3} {4}", s1[s1.Length-1],s2[s2.Length-1],s3[s3.Length-1],s4[s4.Length-1],s5[s5.Length-1]);
        Console.WriteLine(s1[s1.Length-1]+s2[s2.Length-1]+s3[s3.Length-1]+s4[s4.Length-1]+s5[s5.Length-1]);
    }
static void Main()
    {
        for (int i = 0; i<69; i++)
        {
        Console.Write("*");
        }
        Console.WriteLine("*");
    }
static void Main()
    {
        string[] numb = Console.ReadLine().Split(' ');
        Console.WriteLine(long.Parse(numb[0])+long.Parse(numb[1])+long.Parse(numb[2])+long.Parse(numb[3])+long.Parse(numb[4]));
    }
static void Main()
    {
        long a = Convert.ToInt64(Console.ReadLine());
        long b = Convert.ToInt64(Console.ReadLine());
        Console.WriteLine(a+" / "+b+" = "+a/b);
        Console.WriteLine(a+" % "+b+" = "+a%b);          
    }
static void Main()
    {
        string s = Console.ReadLine();
        string[] word = s.Split(' ');
        int t = Convert.ToInt32(word[0])+Convert.ToInt32(word[1]);
        Console.WriteLine(t);
    }
Привет. Я пока приостановил прохождение этого курса. На мой вопрос так внятно и не ответили. Думаю продолжить прохождение этого курса после того как окончу решать задачи по алгоритмике.
static void Main()
    {
        int n1 = Convert.ToInt32(Console.ReadLine());
        int n2 = int.Parse(Console.ReadLine());
        int n3;
        int.TryParse(Console.ReadLine(), out n3);
        Console.WriteLine("{0} {1} {2}",n1+1,n2+1,n3+1);
    }
Console.WriteLine("sbyte " + sbyte.MinValue + " " + sbyte.MaxValue);
            Console.WriteLine("byte " + byte.MinValue + " " + byte.MaxValue);
            Console.WriteLine("short " + short.MinValue + " " + short.MaxValue);
            Console.WriteLine("ushort " + ushort.MinValue + " " + ushort.MaxValue);
            Console.WriteLine("int " + int.MinValue + " " + int.MaxValue);
            Console.WriteLine("uint " + uint.MinValue + " " + uint.MaxValue);
            Console.WriteLine("long " + long.MinValue + " " + long.MaxValue);
            Console.WriteLine("ulong " + ulong.MinValue + " " + ulong.MaxValue);
//www.VideoSharp.info/Консоль/Семантика/Китайская стена
using System;
class VideoSharp
{
    static void Main()
    {
        Console.WriteLine(new string('#',1000));
    }
}
static void Main()
    {
        string s = Console.ReadLine();
        Console.WriteLine(s+"\n"+s);
    }
Аналогичная ситуация. Говорит что предыдущие не решены задачи.
Подписка в Клуб формулистов обновлена.
Количество байт: +1024
Подписка КФ до: 2019-11-17
Остаток байтов: 1034
Вы являетесь участником Клуба формулистов.
Всегда пишите код так, будто сопровождать его будет склонный к насилию психопат, который знает, где вы живете.
— Martin Golding
Это не урок, это скорее отчет за неделю и озвучивание планов на следующую.
в описании отчета и комментариях к нему допускается критика только по существу текущих уроков текущего курса. замечания по сайту в целом делаются в личке, в отчетности они недопустимы. имейте это в виду.
немного не понял... какого сайта? на курсе "SQL:ничего лишнего" я никакой сайт не создаю.
Я в общем видео уроки сайта имел ввиду. 15-16 год.
ну не очень старые, 2018 года))
А текст формы поменять нужно было. Забыл?
Как правило, в течении дня. Доступ уже открыт. Проработайте обязательно курс "Начало здесь", там по 1 уроку в день.
Подписка в Клуб формулистов обновлена.
Количество дней: +40
Количество байт: +256
Подписка КФ до: 2019-11-17
Остаток байтов: 256
Вы являетесь участником Клуба формулистов.
Добрый день, Евгений!
Я оплатил вступление в клуб.
Когда можно ожидать доступ к видеокурсам?
С уважением,
Илья.