Flowcharts
Flowcharts
NG
Agenda
⦿ Identify the symbols used in the creation
of flowcharts
⦿ Review solving problems using IPO
table and Pseudocode
⦿ Design flowchart to solve problems.
START
Gross Pay =
Hours * Pay
Rate
Display Gross
Pay
STOP
Basic Flowchart START
Rounded
Rectangle
STOP
Basic Flowchart START Terminal
rectangles
⚫ indicate a starting or
Read Pay Rate
STOP Terminal
END
Basic Flowchart START
parallelograms
Read Pay Rate
⚫ indicate an input or
output operation Gross Pay =
Hours * Pay
Rate
Display “How
many hours did Display Gross
Read Hours
you work?” Pay
END
Basic Flowchart START
⚫ indicates a process
Read Pay Rate
such as a
mathematical Gross Pay =
Hours * Pay
computation or Process Rate
variable assignment
Display Gross
GrossPay = Pay
STOP
A
Decision
If age
> 12
then
IPO, Pseudocode and Flowchart
Jenny is paid weekly at a rate of $20 an hour. Accept the number
of hours worked within a week and calculate her salary.