Guest User

Untitled

a guest
May 27th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. for(int i = 0; i < 12; i++)
  2.     {
  3.         for(int k = 0; k < 12; k++)
  4.         {
  5.             if(*player == maze[i][k])
  6.             {
  7.                 cout << "@";
  8.             }
  9.             else
  10.             {
  11.             cout << maze[i][k];
  12.             }
  13.         }
  14.         cout << endl;
  15.     }
  16.     cout << endl;
Add Comment
Please, Sign In to add comment