Programming Logic and Design Eighth Edition

Slides:



Advertisements
Similar presentations
Programming with Microsoft Visual Basic 2008 Fourth Edition
Advertisements

Programming with Microsoft Visual Basic th Edition
1 Chapter Five Selection and Repetition. 2 Objectives How to make decisions using the if statement How to make decisions using the if-else statement How.
CHAPTER 5: Repetition Control Structure. Objectives  To develop algorithms that use DOWHILE and REPEAT.. UNTIL structures  Introduce a pseudocode for.
Programming Logic and Design Sixth Edition
CS0004: Introduction to Programming Repetition – Do Loops.
Programming Logic and Design, Third Edition Comprehensive
Objectives In this chapter, you will learn about:
Repeating Actions While and For Loops
Starting Out with C++: Early Objects 5/e © 2006 Pearson Education. All Rights Reserved Starting Out with C++: Early Objects 5 th Edition Chapter 5 Looping.
Chapter 5: Control Structures II (Repetition)
Chapter 5: Loops and Files.
An Object-Oriented Approach to Programming Logic and Design Chapter 6 Looping.
Chapter 5: Repetition Statements. In this chapter, you will learn about: Basic loop structures while loops Interactive while loops for loops Loop programming.
C How to Program, 6/e Summary © by Pearson Education, Inc. All Rights Reserved.
Control Structures - Repetition Chapter 5 2 Chapter Topics Why Is Repetition Needed The Repetition Structure Counter Controlled Loops Sentinel Controlled.
11 Chapter 4 LOOPS AND FILES. 22 THE INCREMENT AND DECREMENT OPERATORS To increment a variable means to increase its value by one. To decrement a variable.
REPETITION STRUCTURES. Topics Introduction to Repetition Structures The while Loop: a Condition- Controlled Loop The for Loop: a Count-Controlled Loop.
Programming Logic and Design Sixth Edition
Lecture Set 5 Control Structures Part D - Repetition with Loops.
Chapter 3 Making Decisions
Lecture 4 C Program Control Acknowledgment The notes are adapted from those provided by Deitel & Associates, Inc. and Pearson Education Inc.
Chapter 4: Making Decisions. Understanding Logic-Planning Tools and Decision Making Pseudocode – A tool that helps programmers plan a program’s logic.
Programming Logic and Design, Second Edition, Comprehensive
Programming Logic and Design Fifth Edition, Comprehensive
An Object-Oriented Approach to Programming Logic and Design Fourth Edition Chapter 5 Arrays.
Mr. Dave Clausen1 La Cañada High School Chapter 6: Repetition Statements.
Programming Logic and Design Sixth Edition Chapter 5 Looping.
6 Chapter 61 Looping Programming Logic and Design, Second Edition, Comprehensive 6.
Programming Logic and Design Fourth Edition, Comprehensive Chapter 6 Looping.
Chapter 5: Control Structures: Iteration Visual Basic.NET Programming: From Problem Analysis to Program Design.
C++ for Engineers and Scientists, Third Edition1 Objectives In this chapter, you will learn about: Basic loop structures while loops Interactive while.
An Introduction to Programming with C++ Sixth Edition Chapter 7 The Repetition Structure.
PROBLEM SOLVING WITH LOOPS Chapter 7. Concept of Repetition Structure Logic It is a computer task, that is used for Repeating a series of instructions.
An Object-Oriented Approach to Programming Logic and Design Fourth Edition Chapter 4 Looping.
Copyright 2003 Scott/Jones Publishing Standard Version of Starting Out with C++, 4th Edition Chapter 5 Looping.
+ Starting Out with C++ Early Objects Seventh Edition by Tony Gaddis, Judy Walters, and Godfrey Muganda Chapter 5: Looping.
Chapter 5: Control Structures: Iteration Visual Basic.NET Programming: From Problem Analysis to Program Design.
Loops and Files. 5.1 The Increment and Decrement Operators.
Copyright © 2012 Pearson Education, Inc. Publishing as Pearson Addison-Wesley C H A P T E R 5 Repetition Structures.
1 Standard Version of Starting Out with C++, 4th Brief Edition Chapter 5 Looping.
Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 5: Looping.
CSC 1010 Programming for All Lecture 4 Loops Some material based on material from Marty Stepp, Instructor, University of Washington.
For…Next Loops, Checked List Boxes, and Combo Boxes Chapter 5.
Copyright © 2012 Pearson Education, Inc. Chapter 5: Loops.
10 Chapter 101 Using Menus and Validating Input Programming Logic and Design, Second Edition, Comprehensive 10.
Alternate Version of STARTING OUT WITH C++ 4 th Edition Chapter 5 Looping.
Topic: Control Statements. Recap of Sequence Control Structure Write a program that accepts the basic salary and allowance amount for an employee and.
Chapter Looping 5. The Increment and Decrement Operators 5.1.
Chapter 7: The Repetition Structure Introduction to Programming with C++ Fourth Edition.
Chapter 6: Looping. Objectives Learn about the loop structure Create while loops Use shortcut arithmetic operators Create for loops Create do…while loops.
While loops. Iteration We’ve seen many places where repetition is necessary in a problem. We’ve been using the for loop for that purpose For loops are.
Programming Logic and Design Fifth Edition, Comprehensive Chapter 6 Arrays.
Chapter Looping 5. The Increment and Decrement Operators 5.1.
Lecture 7 – Repetition (Loop) FTMK, UTeM – Sem /2014.
Chapter 5: Looping. Using the while Loop Loop – A structure that allows repeated execution of a block of statements Loop body – A block of statements.
Lecture 7: Repeating a Known Number of Times
Topics Introduction to Repetition Structures
Programming Logic and Design Fourth Edition, Comprehensive
CHAPTER 5A Loop Structure
( Iteration / Repetition / Looping )
Chapter 5: Looping Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley.
Topics Introduction to Repetition Structures
Learning About the Loop Structure (continued)
Chapter 8: More on the Repetition Structure
Programming Logic and Design Fifth Edition, Comprehensive
Topics Introduction to Repetition Structures
Based on slides created by Bjarne Stroustrup & Tony Gaddis
Based on slides created by Bjarne Stroustrup & Tony Gaddis
Presentation transcript:

Programming Logic and Design Eighth Edition Chapter 5 Looping

Objectives In this chapter, you will learn about: The advantages of looping Using a loop control variable Nested loops Avoiding common loop mistakes Using a for loop Common loop applications The similarities and differences between selections and loops Programming Logic and Design, Eighth Edition

Understanding the Advantages of Looping Looping makes computer programming efficient and worthwhile Write one set of instructions to operate on multiple, separate sets of data Less time required for design and coding Fewer errors Shorter compile time Loop: a structure that repeats actions while some condition continues Programming Logic and Design, Eighth Edition

Understanding the Advantages of Looping (continued) Dual-alternative (or binary) selection structure Provides an action for each of two possible outcomes Figure 5-1 The loop structure Programming Logic and Design, Eighth Edition

Understanding the Advantages of Looping (continued) Figure 5-2 The mainline logic common to many business programs Programming Logic and Design, Eighth Edition

Understanding the Advantages of Looping (continued) Quick Reference 5-1 While Statement Pseudocode Standards Programming Logic and Design, Eighth Edition

Using a Loop Control Variable As long as a condition remains true, the statements in a while loop’s body execute Control number of repetitions Loop control variable initialized before entering loop Loop control variable tested Body of loop must alter value of loop control variable Repetitions controlled by: Counter – used to create a definite counter-controlled loop Sentinel value – used to create an indefinite loop Programming Logic and Design, Eighth Edition

Using a Definite Loop with a Counter Executes a predetermined number of times Counter-controlled loop Program counts loop repetitions Loop control variables altered by: Incrementing Decrementing Counter Any numeric variable that counts the number of times an event has occurred, usually starts with 0 Programming Logic and Design, Eighth Edition

Using a Definite Loop with a Counter(continued) Figure 5-3 A counted while loop that outputs Hello four times Programming Logic and Design, Eighth Edition

Using an Indefinite Loop with a Sentinel Value Performed a different number of times each time the program executes The user decides how many times the loop executes Figure 5-4 An indefinite while loop that displays Hello as long as the user wants to continue Programming Logic and Design, Eighth Edition

Using an Indefinite Loop with a Sentinel Value (continued) Figure 5-5 Typical executions of the program in Figure 5-4 in two environments Programming Logic and Design, Eighth Edition

Understanding the Loop in a Program’s Mainline Logic Three steps should occur in every properly functioning loop Provide a starting value for the variable that will control the loop Test the loop control variable to determine whether the loop body executes Alter the loop control variable Programming Logic and Design, Eighth Edition

Understanding the Loop in a Program’s Mainline Logic (continued) Figure 5-6 A payroll program showing hoe the loop control variable is used Programming Logic and Design, Eighth Edition

Nested Loops Nested loops: loops within loops Outer loop: the loop that contains the other loop Inner loop: the loop that is contained Needed when values of two (or more) variables repeat to produce every combination of values Programming Logic and Design, Eighth Edition

Nested Loops (continued) Figure 5-8 Flowchart and pseudocode for AnswerSheet program (Continues) Programming Logic and Design, Eighth Edition

Nested Loops (continued) Figure 5-8 Flowchart and pseudocode for AnswerSheet program (Continues) Programming Logic and Design, Eighth Edition

Nested Loops (continued) Figure 5-8 Flowchart and pseudocode for AnswerSheet program Programming Logic and Design, Eighth Edition

Nested Loops (continued) Nested Loop facts: Nested loops never overlap. An inner loop is always completely contained within an outer loop An inner loop goes through all of its iterations each time its outer loop goes through just one iteration The total number of iterations executed by a nested loop is the number of inner loop iterations times the number of outer loop iterations Programming Logic and Design, Eighth Edition

Avoiding Common Loop Mistakes Mistake: neglecting to initialize the loop control variable Example: get name statement removed Value of name unknown or garbage Program may end before any labels printed 100 labels printed with an invalid name Figure 5-9 Correct logic for greeting program Programming Logic and Design, Eighth Edition

Avoiding Common Loop Mistakes (continued) Figure 5-10 Incorrect logic for greeting program because the loop control variable initialization is missing Programming Logic and Design, Eighth Edition

Avoiding Common Loop Mistakes (continued) Mistake: neglecting to alter the loop control variable Remove get name instruction from outer loop User never enters a name after the first one Inner loop executes infinitely Always incorrect to create a loop that cannot terminate Figure 5-11 Incorrect logic for greeting program because the loop control variable is not altered Programming Logic and Design, Eighth Edition

Avoiding Common Loop Mistakes (continued) Mistake: using the wrong comparison with the loop control variable Programmers must use correct comparison Seriousness depends on actions performed within a loop Overcharge insurance customer by one month Overbook a flight on airline application Dispense extra medication to patients in pharmacy Programming Logic and Design, Eighth Edition

Avoiding Common Loop Mistakes (continued) Figure 5-12 Incorrect logic for greeting program because the loop control variable is not altered Programming Logic and Design, Eighth Edition

Avoiding Common Loop Mistakes (continued) Mistake: including statements inside the loop that belong outside the loop Example: discount every item by 30 percent Inefficient because the same value is calculated 100 separate times for each price that is entered Move outside the loop for efficiency Programming Logic and Design, Eighth Edition

Avoiding Common Loop Mistakes (continued) Figure 5-13 Inefficient way to produce 100 discount price stickers for differently priced items (Continues) Programming Logic and Design, Eighth Edition

Avoiding Common Loop Mistakes (continued) Figure 5-13 Inefficient way to produce 100 discount price stickers for differently priced items (Continues) Programming Logic and Design, Eighth Edition

Avoiding Common Loop Mistakes (continued) Figure 5-14 Improved discount sticker-making program (Continues) Programming Logic and Design, Eighth Edition

Avoiding Common Loop Mistakes (continued) Figure 5-14 Improved discount sticker-making program Programming Logic and Design, Eighth Edition

Using a for Loop for statement or for loop is a definite loop Provides three actions in one structure Initializes Evaluates Alters Figure 5-15 Comparable while and for statements that each output Hello four times Programming Logic and Design, Eighth Edition

Using a for Loop (continued) Example for count = 0 to 3 step 1 output "Hello" endfor Initializes count variable to 0 Checks count variable against the limit value 3 If evaluation is true, for statement body prints the word “Hello” Increases count by 1 using a step value Programming Logic and Design, Eighth Edition

Using a for Loop (continued) Step value: the amount by which a loop control variable changes Can be positive or negative (incrementing or decrementing the loop control variable) Default step value is 1 Programmer specifies a step value when each pass through the loop changes the loop control variable by a value other than 1 Programming Logic and Design, Eighth Edition

Using a for Loop (continued) Quick Reference 5-2 for Statement Pseudocode Standards Programming Logic and Design, Eighth Edition

Using a for Loop (continued) while statement could be used in place of for statement Pretest loop: the loop control variable is tested before each iteration for loops and while loops are pretest loops Posttest loop: the loop control variable is tested after each iteration do…while is a posttest loop Programming Logic and Design, Eighth Edition

Common Loop Applications Using a loop to accumulate totals Examples Business reports often include totals List of real estate sold and total value Accumulator: variable that gathers values Similar to a counter Counter increments by 1 Accumulator increments by some value Programming Logic and Design, Eighth Edition

Common Loop Applications (continued) Accumulators require three actions Initialize the accumulator to 0 Accumulators are altered: once for every data set processed At the end of processing, accumulators are output Summary reports Contain only totals with no detail data Loops are processed but detail information is not printed Programming Logic and Design, Eighth Edition

Common Loop Applications (continued) Figure 5-16 Month-end real estate sales report Programming Logic and Design, Eighth Edition

Common Loop Applications (continued) Figure 5-17 Flowchart and pseudocode for real estate sales report program (Continues) Programming Logic and Design, Eighth Edition

Common Loop Applications (continued) Figure 5-17 Flowchart and pseudocode for real estate sales report program (Continues) Programming Logic and Design, Eighth Edition

Common Loop Applications (continued) Using a loop to validate data Defensive programming: preparing for all possible errors before they occur When prompting a user for data, no guarantee that data is valid Validate data: make sure data falls in acceptable ranges (month values between 1 and 12) GIGO: Garbage in, garbage out Unvalidated input will result in erroneous output Programming Logic and Design, Eighth Edition

Common Loop Applications (continued) Figure 5-18 Reprompting a user once after an invalid month is entered Programming Logic and Design, Eighth Edition

Common Loop Applications (continued) Figure 5-19 Reprompting a user continuously after an invalid month is entered Programming Logic and Design, Eighth Edition

Common Loop Applications (continued) Limiting a reprompting loop Reprompting can be frustrating to a user if it continues indefinitely Maintain a count of the number of reprompts Forcing a data item means: Override incorrect data by setting the variable to a specific value Programming Logic and Design, Eighth Edition

Common Loop Applications (continued) Programming Logic and Design, Eighth Edition Figure 5-20 Limiting user reprompts

Common Loop Applications (continued) Validating a data type Validating data requires a variety of methods isNumeric() or similar method Provided with the language translator you use to write your programs Black box isChar() or isWhitespace() Accept user data as strings Use built-in methods to convert to correct data types Programming Logic and Design, Eighth Edition

Common Loop Applications (continued) Programming Logic and Design, Eighth Edition Figure 5-21 Checking data for correct type

Common Loop Applications (continued) Validating reasonableness and consistency of data Many data items can be checked for reasonableness Good defensive programs try to foresee all possible inconsistencies and errors Programming Logic and Design, Eighth Edition

Common Loop Applications (continued) Comparing Selections and Loops Selection Structure The two logical paths (True and False) join together Loop Structure One of the logical branches returns to the same decision Figure 5-22 Comparing a selection and a loop Programming Logic and Design, Eighth Edition

Common Loop Applications (continued) Figure 5-23 Inefficient logic for reading and displaying employee records Programming Logic and Design, Eighth Edition

Common Loop Applications (continued) Figure 5-24 Efficient and structured logic for getting and displaying employee records Programming Logic and Design, Eighth Edition

Summary Loops write one set of instructions that operate on multiple, separate sets of data Three steps must occur in every loop Initialize the loop control variable Compare the variable to some value Alter the variable that controls the loop Nested loops: loops within loops Nested loops maintain two individual loop control variables Alter each at the appropriate time Programming Logic and Design, Eighth Edition

Summary (continued) Common mistakes made by programmers Neglecting to initialize the loop control variable Neglecting to alter the loop control variable Using the wrong comparison with the loop control variable Including statements inside the loop that belong outside the loop Most computer languages support a for statement for loop used when the number of iterations is known Loops are used to accumulate totals in business reports and to reprompt users for valid data Programming Logic and Design, Eighth Edition

Summary (continued) In the Selection Structure the two logical paths that emerge from the decision join together following their actions In the loop structure, the paths that emerge from the decision do not join together Instead, with a loop, one of the logical branches that emerges from the structure-controlling decision eventually returns to the same decision Programming Logic and Design, Eighth Edition