for Read 10 integers from the keyboard in the range 0 "-100" and cout how many of them are larger from than 50, and display this result by using a pseudocode
Start
Declare array numbers
Declare variable number
Declare variable counter
Set counter = 0
for i =0 to 10
Read number from the keyboard
Add number to array numbers
end for
for i =0 to 10
if numbers[i]>50 then
Set counter =counter+1
End if
end for
Display counter
Stop
Comments
Leave a comment