1 / 23

6.2 For…Next Loops

6.2 For…Next Loops. General Form of a For…Next Loop Nested For…Next Loops Local Type Inference. For…Next Loops. Used when we know how many times we want the loop to execute A counter controlled loop. For…Next Loop Syntax. Sample. For i As Integer = 1 To 5

fern
Télécharger la présentation

6.2 For…Next Loops

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. 6.2 For…Next Loops • General Form of a For…Next Loop • Nested For…Next Loops • Local Type Inference

  2. For…Next Loops • Used when we know how many times we want the loop to execute • A counter controlled loop

  3. For…Next Loop Syntax

  4. Sample For i As Integer = 1 To 5 lstTable.Items.Add(i & " " & i ^ 2) Next The loop counter variable, i, is • initialized to 1 • tested against the stop value, 5 • incremented by 1 at the Next statement The loop counter variable is often used in statements within the loop body. In this case, displaying a sequence of numbers and their squares

  5. Similar Do While Loop Dim i As Integer = 1 Do While i <= 5 lstTable.Items.Add(i & " " & i ^ 2) i += 1 Loop Loop counter initialization Loop counter initialization increment

  6. Example 1: Output

  7. Example 1: Code Dim pop As Double = 300000 For yr As Integer = 2010 To 2014 lstTable.Items.Add(yr & " " & FormatNumber(pop, 0)) pop += 0.03 * pop Next

  8. Step Clause • Normally after each pass the value of the counter variable increases by 1 • If the clause Step s is appended to the For statement, the value of s will be added to the counter variable after each pass. • If the value of s is a negative number, the value of the counter variable will decrease after each pass.

  9. Example with Negative Step Value For j As Integer = 10 To 1 Step -1 lstBox.Items.Add(j) Next lstBox.Items.Add("Blastoff") Looping backward through the numbers. Start at 10, test to see if j >= 1, decrement by 1. Question: What would happen with Step -2?

  10. Example with Negative Step Value For j As Integer = 1 To 10 Step -1 lstBox.Items.Add(j) Next lstBox.Items.Add("Blastoff") Question: What would happen in this case?

  11. Example 2 This is a good example for testing out various values for the loop’s test and step increment/decrement.

  12. Example 3 Note: Here we have a separate function that is called by the event procedure. Function call Parameter passing Function declaration More on this in Ch5.

  13. Example 3 Here, the loop counter variable is used as an index into the string. It is common practice to use loops for retrieving or manipulating successive positions of a string or an array or a listbox’s collection.

  14. Example 3 Loop starts at the last character of the string, and goes backward until the first.

  15. Nested Loops Loops can be nested inside other loops.

  16. Example 4 Outer loop will execute three times Each time the outer loop executes, the inner loop will execute three times Therefore, the inner loop executes a total of nine times

  17. Example: Nested For…Next Loops For i As Integer = 65 To 70 For j As Integer = 1 To 25 lstBox.Items.Add(Chr(i) & j) Next Next Output: A1 A2 A3 : Outer loop Inner loop Question 1: how many times will the outer loop execute? Question 2: how many times (total) will the inner loop execute?

  18. The Nested for Loop -- Flowchart Initialize outer loop counter Initialize inner loop counter Outer loop statement(s) Outer loop statement(s) Inner loop statement(s) Increment outer loop counter Increment inner loop counter Test to continue outer loop Test to continue inner loop Statements preceding loop No Statements following loop Yes No Yes

  19. Example 4 This example produces a multiplication table. The inner and outer loop counters are used for doing the calculations and displaying the results.

  20. For and Next Pairs • For and Next statements must be paired. • If one is missing, the automatic syntax checker will complain with a wavy underline and a message such as “A ‘For’ must be paired with a ‘Next’.”

  21. Start, Stop, and Step values • Consider a loop beginning with For i As Integer = m To n Step s • The loop will be executed exactly once if m equals n no matter what value s has. • The loop will not be executed at all if m is greater than n and s is positive, or if m is less than n and s is negative.

  22. Altering the Counter Variable • The value of the counter variable should not be altered within the body of the loop. • Doing so might cause the loop to repeat indefinitely or have an unpredictable number of repetitions.

  23. Non-Integer Step Values • Can lead to round-off errors with the result that the loop is not executed the intended number of times. • We will only use Integers for all values in the header.

More Related