Exemplo n.º 1
0
        static void Main(string[] args)
        {
            Student studentA = new Student("John", "Doe", "1/1/1900");
            Student studentB = new Student("Sally", "Jones", "2/21/1951");
            Student studentC = new Student("Bob", "Smith", "9/2/2001");

            Course progWithCSharp = new Course("Programming with C#");
            progWithCSharp.AddStudent(studentA);
            progWithCSharp.AddStudent(studentB);
            progWithCSharp.AddStudent(studentC);

            Teacher teacherA = new Teacher("Paul", "Burns", "10/10/1975");
            progWithCSharp.AddTeacher(teacherA);

            Degree bachelor = new Degree("Bachelor of Science");
            bachelor.AddCourse(progWithCSharp);

            UProgram informationTechnology = new UProgram("Information Technology");
            informationTechnology.AddDegree(bachelor);

            Console.WriteLine(informationTechnology);
            Console.WriteLine(bachelor);
            Console.WriteLine(progWithCSharp);
            Console.WriteLine("\n");
        }
Exemplo n.º 2
0
        public void AddStudent(Student student)
        {
            Student[] tmpStudents;

            if (studentCnt < 1)
            {
                studentCnt++;
                students = new Student[studentCnt];
                students[0] = student;
            }
            else
            {
                studentCnt++;
                tmpStudents = new Student[studentCnt];
                for (int i = 0; i < studentCnt - 1; i++)
                {
                    tmpStudents[i] = students[i];
                }
                tmpStudents[studentCnt - 1] = student;
                students = new Student[studentCnt];
                students = tmpStudents;
            }
        }