Learning Outcome
At the end of this lesson, you will be able to:
- create an application that uses abstract data types
Silent Watching
Review
Lesson
- go over "ADT", Chapter 5
- Computer Based Problem Solving
Activity
- remember in C# ADTs look like:
public struct Book
{
public decimal price;
public string title;
public string author;
}
Daily Assignment
- this is a 2 day assignment
- create a program that holds student information in an array
- as each new student's info is entered, a new entry is created in the array
- use an ADT to hold the student info
- it should look like the program below