How do I write a psuedocode program that generates 100 random numbers, and keeps a count of how many of those random numbers are even and how many are odd
The easiest way to write pseudocode is the same as writing writing code; break the problem into smaller problems and then break those into smaller problems and then break....
To start you off:
generate 100 random numbers
count odds numbers
count even numbers
Now think about how to break each of those lines up more and keep a logical flow.