Flow Chart Exercises
Flow Chart Exercises
Flow Chart Exercises
Flowchart
Q2. Find the sum of 5 numbers
In this question we are asked to find the sum of 5 numbers. So, we will take
two variables - sum and count and set both of them to zero. The sum
variable will store the result while the count variable will keep track of how
many numbers we have read.
To solve this problem, we will use the concept of loop. In loop or iterative
operation, we execute some steps repeatedly as long as the given
condition is TRUE. In this case we will keep reading the input till we have
read 5 numbers.
So, we first initialize sum and count to zero. Then we will take the input and
store it in a variable n. Next, we will add the value stored in n to sum and
save the answer in sum.
Then we will increment count by 1 and check if count is less than 5. If this
condition is TRUE then we will take another input. If the condition is FALSE
then we will print the value stored in variable sum.
2. Enter n (I/O)
Flowchart
Q3. Print Hello World 10 times
This problem is also solved using the loop concept. We take a variable
count and set it to zero. Then we print "Hello World" and increment count
by 1.
Next, we check if count is less than 10. If this is TRUE then we again print
"Hello World" and increment the variable count. On the other hand if the
condition if FALSE then we will stop.
5. if YES go to step 2
else Stop
Flowchart
1. A quadratic equation of a x 2 +bx+ c can be solved by equating the root, x, to be
x=−b ± √ b2−4 ac. Depending on √ b2−4 ac , there are three possibilities for x
(root):
Draw a flowchart that will read in values for a, b and c, and will display whether:
Read in grades with a value between 0 and 100 until a negative grade or grade
greater than 100 is read in. Stop the loop once a negative grade or when the
grade of more than 100 is read in. Then display the total sum of all the other
grades except for the last input (which is either negative or more than 100).