how to drow flow charts 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. Start

2. Initialize counter variable (count) to 0
3. Initialize index variable (i) to 1
4. Loop 10 times while i <= 10
5. Display prompt to enter integer i
6. Read integer i from keyboard
7. If i is within the range of 0 to 100, continue to the next step. Otherwise, display an error message and prompt the user to enter i again.
8. If i > 50, increment count by 1
9. Increment i by 1
10. End loop
11. Display the count of integers that are greater than 50
12. End.

To draw a flowchart for reading 10 integers from the keyboard and counting how many of them are larger than 50, you can follow these steps:

Step 1: Start the flowchart by using the "Start" symbol.

Step 2: Add an input symbol to represent reading an integer from the keyboard.

Step 3: Draw a process symbol to represent storing the input value.

Step 4: Draw a decision symbol to check if the input value is greater than 50. Use an arrow labeled "yes" to continue to the next step if the condition is true and "no" to skip to the end of the flowchart if the condition is false.

Step 5: If the input value is greater than 50, increment a counter by 1 to keep track of the number of values greater than 50.

Step 6: Add a loop symbol to represent iterating through the process until 10 integers have been read.

Step 7: Connect the loop back to the input symbol to read the next integer.

Step 8: After reading 10 integers, use an output symbol to display the count.

Step 9: Finally, connect the output symbol to the "End" symbol to complete the flowchart.

Here is an example of how the flowchart might look:

```
+-------+ +-------------+ +-------+
-->| Start | --> | Read Integer | --> | Store |
+-------+ +-------------+ +-------+
| +------|-------+
| | V
| +---|---+ |
| | > 50? | |
+-----|-------| |
+---|---+ |
| |
V |
+----+ |
NO | Yes| |
+--------|----| |
| V | |
+-------+ | +----+ +---+
-->| Count |-->| Loop |-->|End|
+-------+ +-------+ +---+
| ^
V |
+------+ |
| Output |
+------+
```

This flowchart illustrates the steps necessary to read 10 integers within the range of 0 to 100 from the keyboard, count how many of them are greater than 50, and display the final count.