public static void Main()
Student myStudent = new Student ();
Console.WriteLine("Въведете име: ");
myStudent.име = Console.ReadLine();
Console.WriteLine("Въведете клас: ");
myStudent.клас = Console.ReadLine();
Console.WriteLine("Въведете номер: ");
myStudent.номер = Console.ReadLine();
Console.WriteLine("Въведете оценка по БЕЛ: ");
myStudent.БЕЛ = double.Parse(Console.ReadLine());
Console.WriteLine("Въведете оценка по ЧЕ: ");
myStudent.ЧЕ = double.Parse(Console.ReadLine());
Console.WriteLine("Въведете оценка по Мат: ");
myStudent.Мат = double.Parse(Console.ReadLine());
Console.WriteLine("Въведете оценка по Физика: ");
myStudent.Физика = double.Parse(Console.ReadLine());
Console.WriteLine("Въведете оценка по Химия : ");
myStudent.Химия = double.Parse(Console.ReadLine());
Console.WriteLine("Въведете оценка по Био : ");
myStudent.Био = double.Parse(Console.ReadLine());