fork download
  1. #include <iostream>
  2. #include <vector>
  3.  
  4. using v_type = std::vector<std::vector<char>>;
  5.  
  6. void display(const v_type& v)
  7. {
  8. for (auto& row : v)
  9. {
  10. for (auto& cell : row)
  11. std::cout << cell;
  12. std::cout << '\n';
  13. }
  14.  
  15. std::cout << '\n';
  16. }
  17.  
  18. int main()
  19. {
  20. v_type v(13, std::vector<char>(5, '.'));
  21.  
  22. display(v);
  23.  
  24. v[1][1] = 'X';
  25. v[1][2] = '#';
  26. v[1][4] = 'S';
  27.  
  28. v[4][0] = 'E';
  29. v[4][1] = '#';
  30.  
  31. v[6][0] = 'X';
  32. v[7][2] = 'X';
  33.  
  34. v[12][0] = '@';
  35.  
  36. display(v);
  37. }
Success #stdin #stdout 0s 3428KB
stdin
Standard input is empty
stdout
.....
.....
.....
.....
.....
.....
.....
.....
.....
.....
.....
.....
.....

.....
.X#.S
.....
.....
E#...
.....
X....
..X..
.....
.....
.....
.....
@....