How can I design a flow chart that will sum odd number between 1-100 and print the total sum?

To design a flowchart that will sum odd numbers between 1 and 100 and print the total sum, you can follow the steps outlined below:

1. Start the flowchart by using the start symbol.
2. Initialize two variables, "sum" to keep track of the sum and "number" to iterate through the numbers from 1 to 100.
3. Set the initial value of "sum" to 0.
4. Set the initial value of "number" to 1.
5. Check if the value of "number" is less than or equal to 100.
6. If the condition is true, move to the next step. Otherwise, end the flowchart.
7. Check if the value of "number" is odd.
8. If the condition is true, add the value of "number" to the existing value of "sum."
9. Increment the value of "number" by 2 to iterate through the odd numbers.
10. Move back to step 5 to continue the loop.
11. Once the loop ends (when "number" becomes greater than 100), print the value of "sum."
12. End the flowchart using the end symbol.

By following these steps, you can design a flowchart that sums the odd numbers between 1 and 100 and prints the total sum.

HOW CAN I DESIGN A FLOWCHART THAT WILL SUM ODD NUMBERS BETWEEN 1TO 100 AND PRINT OUT THE TOTAL SUM.

flowchart