I need to display the even numbers in an array (in Psuedocode), and I am totally lost on how to do that.
This is as far as I have gotten:
Begin write_evens(in numbers As Array of Integers, in array_size As Integer)
Declare count As Integer
Set count ← 0
While count < size
*******I'm stuck on what to do in the loop*****
Set count ← count + 1
{edit}
Here's where I am:
Begin write_evens(in numbers As Array of Integers, in array_size As Integer)
Declare count As Integer
Set count ← 0
While count < size
If array_size % 2 == 0
Write array_Size
End if
Set count ← count + 1
End