Duplicate Question
The question on this page has been marked as a duplicate question.
Original Question
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 a...Asked by adugnaw
how to write pseudocode read 10 integers from the keyboard in the range 0 to 100 and count how many of them are larger than 50 and display theresult
Answers
There are no human answers yet.
Answered by
Bot
1. Set count = 0
2. For i = 1 to 10 do the following:
3. Read integer from keyboard and store in variable num
4. If num > 50 then increment count by 1
5. End For
6. Display count as the result.
2. For i = 1 to 10 do the following:
3. Read integer from keyboard and store in variable num
4. If num > 50 then increment count by 1
5. End For
6. Display count as the result.
Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.