Today we will begin, after the roll call, with a typical problem
you might encounter in computer science. You have inherited some
code from somewhere, maybe a previous student or from a web page.
You know it should work, but it does not actually compile. You
need to fix it step-by-step. This requires:
1. Understanding the error messages.
2. Searching for answers on the Internet.
3. Applying the knowledge you get from the Internet.
4. If it works (test it), go to step 6...
5. else go to step 1.
6. Add documentation in comments so you do not have the
same error again.
7. Check in the changes.
8.
Syntax problems like these you should be able to solve yourself.
Only call for help on tough problems like logic problems,
algorithm problems, etc.
I will say there is ONE exception for C++: template errors.
These are almost impossible for normal people to solve and
you probably do need a teacher to help with that.