public Student() { Console.WriteLine(" Введите имя: "); Name = Student.name(); Console.WriteLine("Введиье фамилию: "); Surname = Student.name(); Console.WriteLine("введите возраст: "); Age = Student.age(); Console.WriteLine("введите вес: "); Weight = (int)Student.weight(); Console.WriteLine("Введите рост: "); Height = (int)Student.height(); Console.WriteLine("Введите название вуза: "); University = Student.university(); Console.WriteLine("Введите название курса: "); Course = Student.course(); Console.WriteLine("Введите свою специальность: "); Speciality = Student.university(); }