0% found this document useful (0 votes)
3 views3 pages

Flowchart Algorithm Manual (2)

The document serves as a manual for algorithms and flowcharts, outlining standard symbols used in flowchart creation and their functions. It provides algorithms for generating Fibonacci terms and calculating the sum and average of a series of numbers. Each algorithm is presented in a step-by-step format for clarity.

Uploaded by

dipa
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views3 pages

Flowchart Algorithm Manual (2)

The document serves as a manual for algorithms and flowcharts, outlining standard symbols used in flowchart creation and their functions. It provides algorithms for generating Fibonacci terms and calculating the sum and average of a series of numbers. Each algorithm is presented in a step-by-step format for clarity.

Uploaded by

dipa
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Algorithm & Flowchart Manual

Flowchart is diagrammatic /Graphical representation of sequence of steps to solve a


problem. To draw a flowchart following standard symbols are use

Symbol Name Symbol function

Used to represent start and


Oval end of flowchart

Used for input and output


Parallelogram
operation

Processing: Used for


Rectangle arithmetic operations and
data-manipulations

Decision making. Used to


represent the operation in
Diamond which there are two/three
alternatives, true and false
etc

Flow line Used to indicate


Arrows the flow of logic by
connecting symbols

Circle Page Connector

Off Page Connector

Predefined Process
/Function Used to represent
a group of statements
performing one processing
task.

Preprocessor

|--------------
--------- | Comments
|--------------

5 CIC-UHF
Algorithm & Flowchart Manual

..

Algorithm & Flowchart to generate first n Fibonacci terms 0,1,1,2,3,5…n (n>2)

Algorithm

Step-1 Start

Step-2 Input Value of N

Step-3 A=0, B=1, COUNT=2

Step-4 WRITE A, B

Step-5 IF (COUNT >N) then go to step 12

Step-6 NEXT= A + B

Step-7 WRITE NEXT

Step-8 A=B

Step-9 B=NEXT

Step-10 COUNT=COUNT + 1

Step-11 Go to step-4

Step-12 Stop

20 CIC-UHF
Algorithm & Flowchart Manual
..

Algorithm & Flowchart to find sum and average of given series of numbers

Algorithm

Step-1 Start

Step-2 COUNT=0

Step-3 SUM=0

Step-4 Input NUM (next number in series)

Step-5 SUM= SUM +NUM

Step-6 COUNT=COUNT+1

Step-7 IF More Number in Series then

GOTO Step-4

ENDIF

Step-8 AVERGAE=SUM / COUNT

Step-9 WRITE SUM, AVERAGE

Step-10 Stop

21 CIC-UHF

You might also like