how to draw flowcharts of read 10 integer from the key board in the range 0 up to 100 and count how many them are larger than 50 and display this result by step

1 answer

1. Start
2. Initialize variables: count = 0, i = 1
3. While i <= 10
4. Read integer from keyboard
5. If integer is within range 0-100
6. If integer is greater than 50, increment count by 1
7. Increment i by 1
8. End While
9. Display the value of count
10. End