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

1. Initialize a counter variable to 0.

2. Create a loop that iterates 10 times.
3. Within the loop, read an integer from the keyboard and store it in a variable.
4. Check if the integer is greater than 50.
5. If the integer is greater than 50, increment the counter variable by 1.
6. Repeat steps 3-5 for each iteration of the loop.
7. Display the value of the counter variable.

To write an algorithm that reads 10 integers from the keyboard in the range of 0 up to 100 and counts how many of them are larger than 50, you can follow these steps:

Step 1: Declare and initialize a counter variable to keep track of the count of integers larger than 50. Set it to zero.

Step 2: Use a loop to repeat the following steps for 10 times (since you need to read 10 integers):

2.1: Prompt the user to input an integer value from the keyboard.

2.2: Read the integer value from the input.

2.3: Check if the entered value is larger than 50. If it is, increment the count variable by 1.

Step 3: Display the count variable to show the number of integers larger than 50.

Here is a sample algorithm in pseudocode:

```
Step 1:
Set count = 0

Step 2:
Repeat 10 times:
2.1: Prompt for an integer value
2.2: Read the integer value from the input
2.3: If the entered value is larger than 50, increment count by 1

Step 3:
Display count
```

You can now implement this algorithm in a programming language of your choice.