0% found this document useful (0 votes)
3 views1 page

Flowcharts for Basic Arithmetic Operations

The document outlines three flowcharts for a computational process involving variables A, B, and C. It describes the initialization of these variables, a loop for processing, and the calculation of their sum, product, and average. The flowcharts illustrate the steps to input values and perform computations until a specified condition is met.
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 views1 page

Flowcharts for Basic Arithmetic Operations

The document outlines three flowcharts for a computational process involving variables A, B, and C. It describes the initialization of these variables, a loop for processing, and the calculation of their sum, product, and average. The flowcharts illustrate the steps to input values and perform computations until a specified condition is met.
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

KARL LAURENZ B.

ORDI NARI O

1CHE - A

FL OWCHART #1 FL OWCHART #2 FL OWCHART #3

START START START

COMPUTE
A=0
A = 15 B= 0
B = 10 N= 2 C=0
C = 20 Sum = 0
CTR = 1 Prod = 0
Temp = 0 Ave = 0

Sum = A + B +C
Prod = A + B + C
Ave = (A + B + C)/ 3

Temp = A False
CTR <= 5? END Input A, B, C

True
Print Sum,
Prod, Ave
A=B

PRINT N Call compute

B = TEMP A < B< C END RETURN

N=N+2 END
CTR = CTR + 1

You might also like