1 / 15

Control Structures Part 1

Control Structures Part 1. Skill Area 314 Part A. Materials Prepared by Dhimas Ruswanto , BMm. Lecture Overview. Type of Control Structures IF-Else While Do-While. Type of Control Structures.

Download Presentation

Control Structures Part 1

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Control StructuresPart 1 Skill Area 314 Part A Materials Prepared by DhimasRuswanto, BMm

  2. Lecture Overview • Type of Control Structures • IF-Else • While • Do-While

  3. Type of Control Structures • A program is usually not limited to a linear sequence of instructions. During its process it may bifurcate, repeat code or take decisions. For that purpose, C++ provides control structures that serve to specify what has to be done by our program, when and under which circumstances. • If and Else • While loop • Do…while loop • For loop • Switch statements

  4. IF….ELSE… • Refer to: • Skill Area 313 Part B Basic Elements Slide – (37-45)

  5. While Loop • A while loop function is simply to repeat statement while the condition set in expression is true. • The syntax for the while statement is as follows: while ( condition ) statement;

  6. While Loop • Condition is any C++ expression, and statement is any valid C++ statement or block of statements. When condition evaluates to TRUE (1), statement is executed, and then condition is tested again. This continues until condition tests FALSE, at which time the while loop terminates and execution continues on the first line below statement. // count to 10 int x = 0; while (x < 10) { cout << "X: " << x++; }

  7. While Loop #include <iostream > using namespace std; intmain() { intcounter = 0; // initialize the condition while(counter < 5) // test condition still true { counter++; // body of the loop cout << "counter: " << counter << "\n"; } cout << "Complete. Counter: " << counter << ".\n"; return 0; }

  8. While Loop // custom countdown using while #include <iostream> usingnamespacestd; intmain () { intn; cout << "Enter the starting number > "; cin >> n; while(n>0) { cout << n <<", "; --n; } cout << "FIRE!\n"; return0; }

  9. While Loop • When creating a while-loop, we must always consider that it has to end at some point, therefore we must provide within the block some method to force the condition to become false at some point, otherwise the loop will continue looping forever. • In this case we have included --n; that decreases the value of the variable that is being evaluated in the condition (n) by one - this will eventually make the condition (n>0) to become false after a certain number of loop iterations: to be more specific, when nbecomes 0, that is where our while-loop and our countdown end.

  10. Do-While Loop • Its format is:do statement while (condition); • Its functionality is exactly the same as the while loop, except that condition in the do-while loop is evaluated after the execution of statement instead of before, granting at least one execution of statement even if condition is never fulfilled.

  11. Do-While Loop // number echoer #include <iostream> using namespace std; int main () { unsigned long n; do { cout << "Enter number (0 to end): "; cin >> n; cout << "You entered: " << n << "\n"; } while (n != 0); return 0; }

  12. Do-While Loop • The do-while loop is usually used when the condition that has to determine the end of the loop is determined withinthe loop statement itself, like in the previous case, where the user input within the block is what is used to determine if the loop has to end. • In fact if you never enter the value 0 in the previous example you can be prompted for more numbers forever.

  13. Do-While Loop // Demonstrates do while #include <iostream.h> int main() { intcounter; cout << "How many hellos? "; cin >> counter; do { cout << "Hello\n"; counter--; } while (counter >0 ); cout << "Counter is: " << counter << endl; return 0; }

  14. Do-While Loop • DO use do...while when you want to ensure the loop is executed at least once.  • DOuse while loops when you want to skip the loop if the condition is false.  • DO test all loops to make sure they do what you expect.

  15. --- continue to next slide ---

More Related