how to write algorithm read 10 integers from the keyboard in the range 0 to 100 and count how many of them are larger than 50 and display the result

1. Initialize variable "count" to 0.

2. Create a loop that will run 10 times to read in 10 integers from the keyboard:
a. Read in an integer from the keyboard.
b. Check if the integer is between 0 and 100.
i. If yes, proceed; if no, skip to next iteration.
c. Check if the integer is larger than 50.
i. If yes, increment the "count" variable.
3. Display the result by printing out the value of the "count" variable.

To write an algorithm for your problem, here's a step-by-step guide:

1. Start the program.
2. Initialize a variable `count` to 0. This will be used to keep track of the count of integers larger than 50.
3. Use a loop to read 10 integers from the keyboard. Repeat the following steps 10 times:
- Read an integer from the user and store it in a variable, let's call it `num`.
- Check if `num` is greater than 50:
- If `num` is greater than 50, increment `count` by 1.
- If not, continue to the next iteration.
4. Display the value of `count`.
5. End the program.

Here's the algorithm written in pseudocode:

```
1. SET count = 0
2. FOR i = 1 to 10 DO
2.1 READ num from user
2.2 IF num > 50 THEN
2.2.1 INCREMENT count by 1
2.3 END IF
END FOR
3. DISPLAY count
4. END
```

You can implement this algorithm in your preferred programming language to get the desired result.