Code:
#include <iostream>
#include<string>
using namespace std;
int main()
{
int rows;
int cols;
char wall;
do
{
cout << "Please enter how many rows: ";
cin >> rows;
} while(rows <10);
string map[rows];
do
{
cout << "Please
Leave a comment: