0% found this document useful (0 votes)
7 views5 pages

Flowchart Solutions for Calculations

The document contains 5 solutions to flowchart problems. Solution 1 shows a flowchart to calculate the area of a circle. Solution 2 shows a flowchart to print the larger of two numbers. Solution 3 shows a flowchart to print numbers with an increasing increment. Solution 4 shows a flowchart to calculate the average of exam scores. Solution 5 shows a flowchart to solve quadratic equations.

Uploaded by

tamrakardhruv62
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)
7 views5 pages

Flowchart Solutions for Calculations

The document contains 5 solutions to flowchart problems. Solution 1 shows a flowchart to calculate the area of a circle. Solution 2 shows a flowchart to print the larger of two numbers. Solution 3 shows a flowchart to print numbers with an increasing increment. Solution 4 shows a flowchart to calculate the average of exam scores. Solution 5 shows a flowchart to solve quadratic equations.

Uploaded by

tamrakardhruv62
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

Flowcharts Solutions

Solution 1:

Start

Read r

Area = 3.14 * r* r

print Area

End
Solution 2:

Start

Read A, B

True False
if A>B

print A print B

End
Solution 3:

Start

i = 10

Write i

i=i+2

Yes
i < = 98

No

End
Solution 4:

Start

Sum = 0, C = 0

Enter Exam
Scores, S

Sum = Sum + S

C=C+1

No is
C = 25?

Yes
Av = Sum/25

print Av

End
Solution 5:

Start

Declare variables a, b
D, x1, x2, rp and ip

Calculate discriminant,
D < -b2 – 4ac

True False
is D > = 0?

r1 = �-b +�D� /2a ip = -b/2a


r2 = �-b +�D� /2a rp=�-D/2a

x1 = ip + j*ip
x2 = rp - j*ip

Display r1 and r2

Stop

You might also like