Write a program that generates a random number in the range of 1
through 100, and asks the user to guess what the number is. When
the number is generated by the computer, don’t display the number
to the user, but only display if the number generated is odd or
even.
If the user’s guess is higher than the random number, the
program should display “Too high, try again.” If the user’s guess
is lower than the random number, the...