Write a program that will play a guessing game. Tell them to guess a
number. If they are correct, congratulate them and exit. If they are
not correct, tell them too high, or too low, and have them guess
again. You may encode the number they are to guess or use the
following to generate a random number between 1 and 100 inclusive
#include <iostream>
#include <time.h>
#include <cstdlib>
using namespace std;
main () {
int ARandomNumber;
// you only need to call this once.
srand48(time(NULL));
ARandomNumber = lrand48()% 100 + 1;
}