Flowchart
Flowchart
Flowchart symbols
Different types of symbols are used to draw flowcharts. These symbols are connected by arrow
lines. Arrow lines are used to indicate the flow of control.
The flowchart symbols are as follows:
Symbol & its name Purpose of the symbol
An Oval represents the starting or ending point of the diagram.
Terminator
A rectangular box indicates some particular operation or computation.
Process
A parallelogram indicates either an input that enters the system or an
ouptut that leaves the system. Usually used to read input from the user
or print data
Input / Output
A diamond represents a decision or branching point. Lines coming out
from the diamond indicates different possible situations, leading to
different sub-processes.
Decision Usually used whenever there is a condition like in if statement,
switch... case, and loops
This symbol would contain a letter inside. It indicates that the flow
continues on a matching symbol containing the same letter somewhere
else on the same page.
Connector
Lines represent the flow of the sequence and direction of a process.
Flow lines
Example 1 : To find Sum of two numbers and print it
Print
PrintSum
sum
Print i