#include #include #include using namespace std; int main(){ const string m[][10]{ {"^", "^", "|", "|", "_", "_", "(", " ", " ", ")"}, {"|", "|", "|", "_", "_", "|", "|", "|", "|", "|"}, {"_", "_", "^", "_", "^", "|", "|", "_", "|", "_"}, {"_", "_", "^", "_", "^", "|", "|", "[]", "_", "[]"}, {"|", "|", "|", "_", "_", "_", "_", "[]", "[]", "[]"}, {"(", ")", "|", "_", "_", "_", "_", "_", "[]", "_"} }; const size_t x {size(m)}; const size_t y {size(m[0])}; for(int i {0}; i < x; i++){ for(int j {0}; j < y; j++){ cout << m[i][j]; } cout << "\n"; } cout << "Legend:\n" << "_: Flat Land\n" << "|: Wooded Area\n" << "^: Mountain\n" << "(: Left Bound of Water Source\n" << "): Right Bound of Water Source\n" << "[]: Man made Structure\n"; return EXIT_SUCCESS; }