21
7/23/2019 VL Chap3 WhileLoops http://slidepdf.com/reader/full/vl-chap3-whileloops 1/21 Chapter 3 A Guide to Working with Visual Logic 1 While Loops

VL Chap3 WhileLoops

Embed Size (px)

Citation preview

Page 1: VL Chap3 WhileLoops

7/23/2019 VL Chap3 WhileLoops

http://slidepdf.com/reader/full/vl-chap3-whileloops 1/21

Chapter 3

A Guide to Working with Visual Logic1

While Loops

Page 2: VL Chap3 WhileLoops

7/23/2019 VL Chap3 WhileLoops

http://slidepdf.com/reader/full/vl-chap3-whileloops 2/21

Console Input/Output (I/O)

A Guide to Working with Visual Logic2

Console I/O is persistent: each line of input and output remains in

the console window for the lifetime of the program

In Visual Logic, console I/O options are under the More>> 

 button in the edit dialog

In Visual Logic, console I/O is indicated by the console screenicon (small rectangle) at the top of the flowchart element

The end-of-output symbol (§) always appears at the end of the

console output expression

The position of the end-of-output symbol (§) determines the

starting location for the NEXT line of console I/0

Page 3: VL Chap3 WhileLoops

7/23/2019 VL Chap3 WhileLoops

http://slidepdf.com/reader/full/vl-chap3-whileloops 3/21

A Guide to Working with Visual Logic3

Page 4: VL Chap3 WhileLoops

7/23/2019 VL Chap3 WhileLoops

http://slidepdf.com/reader/full/vl-chap3-whileloops 4/21

While Loop – Count 1 to 5

A Guide to Working with Visual Logic4

Page 5: VL Chap3 WhileLoops

7/23/2019 VL Chap3 WhileLoops

http://slidepdf.com/reader/full/vl-chap3-whileloops 5/21

While Loop – Count Backward from

_______ to __________ 

A Guide to Working with Visual Logic5

Note: the greaterthan equal to >=

Decreasing the LCV

Page 6: VL Chap3 WhileLoops

7/23/2019 VL Chap3 WhileLoops

http://slidepdf.com/reader/full/vl-chap3-whileloops 6/21

While Loops

A Guide to Working with Visual Logic6

!  While loops are used to repeat actions

In Visual Logic, the While loop flowchart element is a six-sided figure with a condition and two exit arrows—true andfalse

When control flows to the While loop, the condition is

evaluated! 

If the condition is true, the control flows out through the truearrow into the body of the loop

!  At the end of the loop body, the control flows back to the While

loop and the condition is evaluated again!  This process repeats until the condition eventually evaluates to

false, at which time the control flows through the false arrow tothe statement after the While loop

Page 7: VL Chap3 WhileLoops

7/23/2019 VL Chap3 WhileLoops

http://slidepdf.com/reader/full/vl-chap3-whileloops 7/21

A common template for a While Loop

A Guide to Working with Visual Logic7

LCV = Loop

Control

Variable

Initialize LCV

Test LCV

Do Something

Update LCV

True

False

After Loop

Page 8: VL Chap3 WhileLoops

7/23/2019 VL Chap3 WhileLoops

http://slidepdf.com/reader/full/vl-chap3-whileloops 8/21

Display Even Numbers

A Guide to Working with Visual Logic8

Which is the LCV?Number

Page 9: VL Chap3 WhileLoops

7/23/2019 VL Chap3 WhileLoops

http://slidepdf.com/reader/full/vl-chap3-whileloops 9/21

While Loop – Count Backward from

_______ to __________ 

A Guide to Working with Visual Logic9

Note: the greaterthan equal to >=

Decreasing the LCV

Page 10: VL Chap3 WhileLoops

7/23/2019 VL Chap3 WhileLoops

http://slidepdf.com/reader/full/vl-chap3-whileloops 10/21

A Guide to Working with Visual Logic10

Displaying

Output in

Columns of

Needanother

variable

Page 11: VL Chap3 WhileLoops

7/23/2019 VL Chap3 WhileLoops

http://slidepdf.com/reader/full/vl-chap3-whileloops 11/21

10 Times Table

A Guide to Working with Visual Logic11

LCV : initial value?

Loop Condition?

Update LCV:Output in Loop Body:

Page 12: VL Chap3 WhileLoops

7/23/2019 VL Chap3 WhileLoops

http://slidepdf.com/reader/full/vl-chap3-whileloops 12/21

While Loops – Multiplication Tables

A Guide to Working with Visual Logic12

A constant is an assigned

variable whose value does

not change throughoutthe program

Why do we need constant

variables?

Page 13: VL Chap3 WhileLoops

7/23/2019 VL Chap3 WhileLoops

http://slidepdf.com/reader/full/vl-chap3-whileloops 13/21

While Loop – Post Test

A Guide to Working with Visual Logic13

Page 14: VL Chap3 WhileLoops

7/23/2019 VL Chap3 WhileLoops

http://slidepdf.com/reader/full/vl-chap3-whileloops 14/21

Pre-Test and Post-Test While Loops

A Guide to Working with Visual Logic14

2 types of while loops: Pre-Test and Post-Test

A Pre-Test loop tests the condition BEFORE the body is

executed. If the condition is false initially (i.e. the first time)

then the loop is NEVER executed.

In a Post-Test loop, the body is executed one time before the

looping condition is tested

A Post-Test loop guarantees one execution of the loop

 body regardless of the condition!!  After one pass through the loop there is no

difference between the pre-test and post-test loops

Page 15: VL Chap3 WhileLoops

7/23/2019 VL Chap3 WhileLoops

http://slidepdf.com/reader/full/vl-chap3-whileloops 15/21

Sum of 5

numbers

A Guide to Working with Visual Logic15

Variables:

Count is the LCV

sum  – accumulates

the sum as the

numbers areentered

Page 16: VL Chap3 WhileLoops

7/23/2019 VL Chap3 WhileLoops

http://slidepdf.com/reader/full/vl-chap3-whileloops 16/21

Grocery Checkout Problem

A Guide to Working with Visual Logic16

A user purchases several items. The price of each item is entered.The Sales Tax is calculated and added to the total price to

determine the total amount due.

!  Do we know how many items there are?

Will each user buy the same number of items as another user?

How many times should we repeat the loop?

The number of repetitions varies!

Use a SENTINEL value to control the loop

Page 17: VL Chap3 WhileLoops

7/23/2019 VL Chap3 WhileLoops

http://slidepdf.com/reader/full/vl-chap3-whileloops 17/21

Sentinel Value:

signals end of

data

A Guide to Working with Visual Logic17

What is the sentinel

value in this example?

- 1

What is the LCV?

Where is it initialized?Where is it updated?

Page 18: VL Chap3 WhileLoops

7/23/2019 VL Chap3 WhileLoops

http://slidepdf.com/reader/full/vl-chap3-whileloops 18/21

Pseudo-Code: Sentinel Value Grocery

Checkout

A Guide to Working with Visual Logic18

Assign: SubTotal = 0

Input: ItemPrice

While (ItemPrice < > - 1)

Assign: SubTotal = SubTotal + ItemPriceInput: ItemPrice

EndWhile

Assign: Total = SubTotal + 0.6 * SubTotal

Output: “Your purchase total is “ & Total

Page 19: VL Chap3 WhileLoops

7/23/2019 VL Chap3 WhileLoops

http://slidepdf.com/reader/full/vl-chap3-whileloops 19/21

A template for a While Loop with Sentinel –

Reading Input

19

Input: InputNum

Process InputNum

True

False

After Loop

Input: InputNum

InputNum< >Sentinel Important Note:

• 

Read the 1st

 InputBEFORE the loop,

• Read subsequent

input INSIDE the

Loop – last step.

Page 20: VL Chap3 WhileLoops

7/23/2019 VL Chap3 WhileLoops

http://slidepdf.com/reader/full/vl-chap3-whileloops 20/21

Average of Input Numbers - Sentinel

20

counter (increase by 1)

accumulator

(increase by input

number)

Page 21: VL Chap3 WhileLoops

7/23/2019 VL Chap3 WhileLoops

http://slidepdf.com/reader/full/vl-chap3-whileloops 21/21

Sentinel Value, Counter, Accumulator

A Guide to Working with Visual Logic21

Sentinel Values are “end of data” values that indicate all data has been processed. Sentinel values are NOT part of the data set and

should NOT be processed.

!  Counters are variables typically used in a loop to help count and

control the number of times the loop body is executed and are

usually incremented by one (but not necessarily!)

Accumulators maintain a running total; they are variables

used inside a loop to help calculate totals (and averages).Accumulators are typically incremented/updated by the value

of a variable.