Given numRows and numColumns, print a list of all seats in a theater. Rows are numbered, columns lettered, as in 1A or 3E. Print a space after each seat, including after the last.
Ex: numRows = 2 and numColumns = 3 prints:
1A 1B 1C 2A 2B 2C
Extracted text: 1 #include 2 using namespace std; 3 4 int main() { int numRows; int numColumns; int currentRow; int currentColumn; char currentColumnLetter; 7 8. 9. 10 11 cin >> numRows; 12 cin >> numColumns; 13 14 p* Your solution goes here */ 15 16 cout < endl;="" 17="" 18="" return="" 0;="" 19="">
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here