Welcome to the GDNet C++ Workshop – Ch. 7
For a complete introduction to this workshop, please look here.Workshop Overview This workshop is designed to aid people in their journey to learn beginning C++. This workshop is targeted at highly motivated individuals who are interested in learning C++ or who have attempted to learn C++ in the past, but found that without sufficient support and mentoring they were unable to connect all the pieces of this highly complex but powerful programming language. This is a 'guided' self-teaching C++ workshop. Each student is responsible for taking the time to read the material and learn the information. The community and tutors that arise out of this workshop are here for making the learning process run more smoothly, but are not obligated to baby-sit a person's progress. Because everyone will be working from the same textbook (
Teach Yourself C++ in 21 days 5th Ed.), students may find it easier to get answers to the specific questions they might have. There is no minimum age requirement, and there is no previous programming experience required. Additionally, this workshop does not attempt to defend C++ as a language, nor does it attempt to demonstrate that C++ is either more or less useful then other programming languages for any particular purpose. People who intend to start a discussion about the differences between C++ and ANY other languages (except as are relevant to a particular discussion), are encouraged to do so elsewhere. This workshop is for educational, not philosophical discussions.
Quizzes & Exercises Each week will have quizzes and exercises posted in the weekly threads. Please try and answer them by yourself. As well, please
DO NOT post the answers to Quizzes and Exercises within this thread. Once it becomes acceptable to post the answers to quizzes and exercises, an additional thread will be created each week specifically for the purpose of posting quiz answers. If you try with reasonable effort but are unable to answer the questions or complete the exercises, feel free to post a clarification question here on the thread. Tutors, myself, or others will do the best we can to point you in the right direction for finding the answer.
Chapter 7 – More on Program Flow
Introduction In general there are two methods to change the flow of execution in C++. The first is branching, which we covered back in chapter 4, and includes the if, else, and switch statements. The second method is iteration. This includes the for, while, and do-while statements. By the end of this chapter you will have learned all the basic building blocks for controlling the flow of execution within a program. Additionally, you've learned how to declare variables, write expressions, create and call functions, and from last week - declare and use your own custom data types in the form of classes and objects. After this week we move on to what might be considered the more
intermediate features of the language - such as pointers, operator overloading, inheritance, and polymorphism. This chapter is roughly 25 pages - shorter than the average chapter. Which is why this week is a good week to introduce your first programming project. More details on this will follow later in the week.
Outline of the Reading - Chapter 7- Looping
- Using while Loops
- Implementing do...while Loops
- Using do...while
- Looping with the for Statement
- Summing Up Loops
- Controlling flow with switch statements
Good Luck!
[Edited by - jwalsh on May 30, 2007 5:32:50 PM]