akosiraff

Download Maze CPP

Aug 31st, 2015
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1.  
  2. Download: http://solutionzip.com/downloads/maze-cpp/
  3. Write a new C++ program with the following functionality:
  4. x The program writes a greeting on the screen.
  5. x Then the program displays a maze of ASCII symbols on the screen.
  6. x The maze consists of 8 rows and 8 columns of characters.
  7. In each column/row there can be one of the following symbols:
  8. ASCII-code Symbol
  9. 179 ¦
  10. 180 ¦
  11. 191 +
  12. 192 +
  13. 193 -
  14. 194 -
  15. 195 +
  16. 196 -
  17. 197 +
  18. 217 +
  19. 218 +
  20. 32 (space)
  21. x The first row of the maze is +– –+ (ASCII codes 218, 196, 196, 32, 32, 196, 196, 191).
  22. x The eighth row of the maze is +– –+ (ASCII codes 192, 196, 196, 32, 32, 196, 196, 217).
  23. x The first and last symbol of rows 2–7 of the maze are ASCII code 179.
  24. x The ASCII symbols of the inner part of the maze are selected randomly from the above list.
  25. x Each run of the program should display a different maze.
  26. It is not possible to enter these symbols into your program code from the keyboard. However it is
  27. possible to use cout to display these symbols using their ASCII codes, as follows:
  28. cout << (char)104 << (char)101 << (char)108 << (char)108 << (char)111 << endl; The notation (char) is a “type cast” that changes the data type of the following number from int to char, so that cout treats the number as an ASCII code of a char, and displays the corresponding character instead of the number value itself. Here is an example of what the output of your program could look like:
  29. Download: http://solutionzip.com/downloads/maze-cpp/
Add Comment
Please, Sign In to add comment