Answer:
Step-by-step explanation:
The algorithm to find all odd numbers between 10 and 50 is as follows:
1. Start by setting the variable `i` equal to 11.
2. While `i` is less than or equal to 49, do the following:
- Print the value of `i`.
- Add 2 to `i`.
3. End the loop.
This algorithm will print all odd numbers between 10 and 50, inclusive .
I hope this helps! Let me know if you have any other questions.