1 / 13

CS0004: Introduction to Programming

CS0004: Introduction to Programming. Repetition – Do Loops . Review. A condition is… a statement that can (but does not have to) include relational or logical operators that results to either True or False Relational Operators …

onslow
Télécharger la présentation

CS0004: Introduction to Programming

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. CS0004: Introduction to Programming Repetition – Do Loops

  2. Review • A condition is… • a statement that can (but does not have to) include relational or logical operators that results to either True or False • Relational Operators… • compare two entities. Returns either True or False. • =,<>, <, >, <=, >= • Logical Operators… • combine two or more conditions. Return either True or False. • And, Or, Not

  3. Loops • So far we have used conditions in making decisions that execute a sequence of statements once. If condition Then statement(s) End If • However, we can use conditions to execute a sequence of statements multiple times. • A loop is used to repeatedly execute a sequence of statements a number of times. • Each repetition of the loop is called a pass, or iteration. • Loops can be used for validation, computing naturally repetitive calculations, take in a variable amount of data from the user, or many other tasks.

  4. Do Loops • Do Loops execute the code they contain until a condition is false. • Do Loops come in two forms: Pretest and Posttest. • General Form of Pretest: Do While condition statement(s) Loop • First, it checks if condition is true. • If the condition is false, then the statement(s) are not executed • If the condition is true, it executes the statement(s) in the loop’s block. • Then, it goes back to step 1. • Said another way, the statement(s) are executed until condition is false. • This is called Pretest because the condition comes first.

  5. Pretest Do Loop Flowchart Is the condition True? Yes No Execute statements within the loop Execute statements that follow the loop

  6. Pretest Do Loop Examples 1, 2 and 3 • New Topics: • Pretest Do Loop • Looping used for validation • Looping used for variable length user input • Notes: • In Example 3: • count is called a counter variable. • Counter Variables count how many times a loop repeats. • sumis called an accumulator variable. • Accumulator Variables reflect the total (accumulation of) work done by all the repetitions done in the loop. • In this case it was the sum of all numbered entered • The loop in this case is called a sentinel-controlled loop. • A Sentinel-Controlled Loop is broken out of when a variable in its condition gets a certain value. • When -1 is entered for num, -1 is called an sentinel value. • Sentinel Values create conditions where a sentinel-controlled loop stops repeating.

  7. Pretest Do Loop Example 4 • New Topic: • Looping for calculations • Note: Only use looping for calculations when you cannot easily do the calculations without looping. • How would we do Example 4 without looping?

  8. Posttest Do Loop • General Form of Posttest: Do statement(s) Loop While condition • First, it executes the statement(s) • Second, it checks the condition • If the condition is false, then the loop ends • If the condition is true, it goes back to step 1. • This is called posttest because it checks the condition at the end.

  9. Posttest Do Loop Flowchart Execute statements within the loop Yes Is the condition True? No Execute statements that follow the loop

  10. Posttest Do Loop Example 1 • New Topics: • Posttest Do Loop • When to use Posttest

  11. Until Keyword • In both forms of the Do Loop, you can replace While with Until • While loops while the condition is True • Untilloops until the condition is True Do While num <> -1 statement(s) Loop Is the same as… Do Until num =-1 statement(s) Loop • Until may make more sense in some sentinel-controlled loops.

  12. Infinite Loops • An infinite loop is a logical error where a loop has no way of reaching the condition where the loop stops executing, and therefore repeats indefinitely. • For example: Dim num As Integer = 1 Do While num < 1 num += 1 Loop • This loop will repeat forever because num will never be less than 1. • This may be a simple example, but they can be more complex and harder to spot. If your program seems to stall at about the time a loop is executing, look to see if you have created an infinite loop. • To stop a program from running while it is in an infinite loop, hit the “Stop Debugging” button.

  13. Closing Notes: • You can end a loop prematurely by using the Exit Do statement in the body of a loop. As soon as Exit Do is executed, execution jumps immediately to the statement following the Loop statement. • Just like with an if statement, variables declared inside of a loop have block-level scope, meaning they cannot be used outside of the loop. Be careful though, these variables are then going to be declared EVERY iteration of the loop.

More Related