C++ Snake source code (with paper)
Dissertation Table of Contents:
Contents Chapter 1 Introduction - 1 -
1.1 About the topic - 1 -
1.1.1 Question requirements - 1 -
1.1.2 Topic selection background - 1 -
1.2 About compiling software - 1 -
1.3 About compatibility - 1 -
Chapter 2 Outline Design - 2 -
2.1 Software main function design - 2 -
2.1.1 Program structure - 2 -
2.1.2 Program flow - 2 -
Chapter 3 Software Implementation - 4 -
3.1 Declaration of variables, functions and resources - 4 -
3.1.1 Function declaration - 4 -
3.1.2 Variable declaration - 4 -
3.1.3 Resources - 5 -
3.2 Implementation of main functions - 5 -
3.2.1 Game interface - 5 -
3.2.2 Initialize food - 6 -
3.2.3 Start the game - 7 -
3.2.4 Hero List - 9 -
3.2.5 Game Settings - 9 -
Chapter 4 Results and Discussion - 10 -
4.1 Program operation - 10 -
4.2 Error debugging and analysis - 12 -
Expand