#include #include using namespace std; int main() { int x, y; int outcome, guess; srand(time(NULL)); x = ____________________ ; // generate the first random integer between 1 and 17 inclusively while (1) { cout << "Random number = " << x << endl; cout << "More (1) or Less (0) > "; cin >> guess; y = ____________________ ; // generate the next random integer between 1 and 17 inclusively if ( ____________________ ) outcome = 2; else if ( ____________________ ) outcome = 1; else outcome = 0; if ( ____________________ ) cout << "You are right ......" << endl << endl; else cout << "You are wrong." << endl << endl; ____________________ ; } return 0; }