/********************************************************** ** Program: lab2_hotel.cpp ** Authors: Both partners’ names ** Date: 4/6/2020 ** Description: Assign a guest to a random hotel floor. ***********************************************************/ #include #include /* include to allow rand() to be used */ using namespace std; int main() { int x; /* variable to hold a random integer */ x = rand(); cout << "x = " << x << endl; x = rand(); cout << "x = " << x << endl; return 0; }