0% found this document useful (0 votes)
5 views

Flowchart In Programming

Uploaded by

jhegs tindugan
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views

Flowchart In Programming

Uploaded by

jhegs tindugan
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 8

Symbol Purpose Description

Indicates the flow of logic by


Flow line
connecting symbols.

Terminal(Stop/Start) Represents the start and the end of a


flowchart.

Input/Output Used for input and output operation.


Processing Used for arithmetic operations and
data-manipulations.

Flowchart In Programming
A flowchart is a diagrammatic representation of an algorithm. A flowchart can
be helpful for both writing programs and explaining the program to others.

Symbols Used In Flowchart


Decision
Used for decision making between
tw or more alternatives. Examples of
flowcharts
in
On-page Connector

Used to join different flowline

Off-page Connector

Used to connect the flowchart


portion on a different page.

Represents a group of statements


Predefined performing one processing task.
Process/Function

programming

1. Add two numbers entered by the user.


Flowchart to add two numbers
2. Find the largest among three different numbers entered by the user.
Flowchart to find the largest among three numbers.
3. Find all the roots of a quadratic equation ax2+bx+c=0
Flowchart to find roots of a quadratic equation
Flowchart fo display the Fibonacci Series
Note: Though flowcharts can be useful for writing and analyzing a program, drawing a flowchart for
complex programs can be more complicated than writing the program itself. Hence, creating flowcharts
for complex programs is often ignored.

You might also like