how to write algorithm 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 step by step

1. Set a counter variable, "count", to 0.

2. Create an empty list variable, "numbers".
3. Use a loop to prompt the user to enter 10 integers from the keyboard.
4. For each integer entered, check if it is in the range 0-100. If not, prompt the user to enter a different integer.
5. If the integer is in the range 0-100, append it to the "numbers" list.
6. Check if the integer is larger than 50. If so, increment the "count" variable by 1.
7. Print out the "numbers" list and the "count" variable.
8. End the program.

Here's the algorithm in pseudocode:

```
count = 0
numbers = []

for i in range(10):
num = -1
while num < 0 or num > 100:
num = input("Enter an integer between 0 and 100: ")
try:
num = int(num)
except ValueError:
num = -1
numbers.append(num)
if num > 50:
count += 1
print("Number entered:", num)

print("Numbers entered:", numbers)
print("Number of integers larger than 50:", count)
```

Sure! Here's a step-by-step algorithm to read 10 integers from the keyboard in the range of 0 to 100, count how many of them are larger than 50, and display the result:

1. Initialize a variable, let's call it "count," to keep track of the number of integers greater than 50. Set count to 0.

2. Create a loop that will repeat 10 times. Let's use a "for" loop.

3. Within the loop, prompt the user to enter an integer.

4. Read the integer from the keyboard and store it in a variable, let's call it "number."

5. Check if the value of "number" is greater than 50.

6. If "number" is greater than 50, increment the value of "count" by 1.

7. Repeat steps 3-6 for the remaining 9 integers.

8. After the loop ends, display the value of "count" to the user.

Here's a sample implementation of the algorithm in Python:

```python
count = 0

for i in range(10):
number = int(input("Enter an integer between 0 and 100: "))

if number > 50:
count += 1

print("The number of integers larger than 50 is:", count)
```

You can use this algorithm as a guideline and implement it in the programming language of your choice.