Homework 3, Notes.
- If you submitted a bad file, turn the correct file in immediately.
- You may redo your program if you turned it in on time. Redos are do 10/2 at midnight.
- You really should know how to use tar and makefiles. If you are confused, seek help NOW.
- All of the input for fastfood is integer, don't read it in as a string and convert it.
- all of the input for grand can be done with a stream extraction operator. There is no need for a cin.ignore when using this.
- The first input to grand is an integer, read it as such.
- Do not mix data in an array. You should have a different variable to store the tickets required for a prize and the prize amount. Don't put the prize amount as the last value in the array of tickets.
- You really should build a struct or class to hold a prize then declare a vector of these.
- If you wish to run my test suite, in the directory where grand and fastfood are located
~dbennett/330/hw3/runAll